FBComponentList Class Reference
 
 
 
FBComponentList Class Reference

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>


Class Description

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 ()

Member Function Documentation

def __reduce__ ( )
def __init__ ( )

Python Docstring:

__init__( (object)arg1) -> None 
def __len__ ( )

Python Docstring:

__len__( (FBComponentList)arg1) -> int 
def __getitem__ ( )

Python Docstring:

__getitem__( (FBComponentList)arg1, (object)arg2) -> object 
def count ( )

Python Docstring:

count( (FBComponentList)arg1) -> int 
def append ( )

Python Docstring:

append( (FBComponentList)arg1, (FBComponent)arg2) -> None 
def removeAll ( )

Python Docstring:

removeAll( (FBComponentList)arg1) -> None 
def GetCount ( )

Python Docstring:

GetCount( (FBComponentList)arg1) -> int 
def Add ( )

Python Docstring:

Add( (FBComponentList)arg1, (FBComponent)arg2) -> None 
def Clear ( )

Python Docstring:

Clear( (FBComponentList)arg1) -> None