Manages the list of near field sensors.
|
|
|
|
|
__contains__(x,
y)
y in x |
|
|
|
|
__delitem__(x,
y)
del x[y] |
|
|
|
|
|
|
|
|
|
|
__setitem__(x,
i,
y)
x[i]=y |
|
|
|
bool
|
append(iSensor)
Appends a near field sensor to the list. |
|
|
|
NearFieldSensor
|
at(iName)
Returns the near field sensor by name. |
|
|
|
None
|
|
|
bool
|
contains(iSensor)
Determines if the near field sensor is in the list. |
|
|
|
int
|
index(iSensor)
Retrieves the index of a near field sensor. |
|
|
|
bool
|
insert(iIndex,
iSensor)
Inserts a near field sensor into the list. |
|
|
list{string}
|
names()
Returns the names of the near field sensors in the list. |
|
|
|
bool
|
remove(iIndex)
Removes a near field sensor. |
|
|
|
bool
|
replace(iIndex,
iSensor)
Replaces a near field sensor. |
|
|
|
int
|
size()
Returns the size of the list. |
|
|
list{string}
|
swap()
Returns the names of the near field sensors in the list. |
|
|
|
Inherited from core.Selectable:
clone,
isSelected
Inherited from core.Updatable:
__enter__,
__exit__,
hash,
isValid,
reasonWhyInvalid
|