Beispiel #1
0
 def as_bool_value(self, index):
     """ Returns a bool value for the given index. """
     return IVariable.AsBoolValue(self._var, index)
Beispiel #2
0
 def variable_at(self, index):
     """ Constructs a variable to represent data at the given index. """
     return VariableWrapper.wrap(IVariable.VariableAt(self._var, index))
Beispiel #3
0
 def as_double_value(self, index):
     """ Returns a double value for the given index. """
     return IVariable.AsDoubleValue(self._var, index)
Beispiel #4
0
 def as_string_value(self, index):
     """ Returns a string value for the given index. """
     return IVariable.AsStringValue(self._var, index)
Beispiel #5
0
 def is_auto_excluded(self, index):
     """ Returns a value indicating whether the value at the given index is automatically excluded. """
     return IVariable.IsAutoExcluded(self._var, index)
Beispiel #6
0
 def ko_state(self, index):
     """ Ko state at the given index. """
     return IVariable.KoState(self._var, index)
Beispiel #7
0
 def is_included(self, index):
     """ Returns a value indicating whether the value at the given index is included. """
     return IVariable.IsIncluded(self._var, index)