This reference page is linked to from the following overview topics: FBComponent - The Base Entity Class, Data types & properties, Example: Cube Counter.
#include <mainpage.h>
FBComponentList class. This class implements a special sort of list that can only contain instances of FBComponent objects. To users it behaves as a tuple, since it is not possible to add new objects in the list. Only methods or function that uses FBComponentList as argument can insert new objects. Users can query the content of the list with the bracket operator.
# Supported list protocol methods: l = FBComponentList() len(l) print l[0]
Public Member Functions |
|
def | __reduce__ () |
def | __init__ () |
def | __len__ () |
def | __getitem__ () |
def | count () |
def | append () |
def | removeAll () |
def | GetCount () |
def | Add () |
def | Clear () |
def __reduce__ | ( | ) |
def __init__ | ( | ) |
def __len__ | ( | ) |
def __getitem__ | ( | ) |
Python Docstring:
__getitem__( (FBComponentList)arg1, (object)arg2) -> object
def count | ( | ) |
def append | ( | ) |
Python Docstring:
append( (FBComponentList)arg1, (FBComponent)arg2) -> None
def removeAll | ( | ) |
def GetCount | ( | ) |
def Add | ( | ) |
def Clear | ( | ) |