Property Manager.
The property manager exists in all FBComponent objects, and contains an array of all the registered properties. These properties may be SDK properties, internal properties or both.
Public Member Functions |
|
__init__ () | |
Constructor. |
|
__del__ () | |
Destructor. |
|
int | Add (HFBProperty Property) |
Add a property to the property manager.
|
|
HFBProperty | operator[] (int pIndex) |
Overloaded [] operator. |
|
int | GetCount () |
Get the number of properties stored in
property manager. |
|
HFBProperty | Find (str pPropertyName, bool pMultilangLookup=True) |
Find a property, based on its name. |
|
int | Remove (FBProperty pProperty) |
Remove a property. |
|
AddToCache (FBProperty pProperty) | |
Add a property to PropertyCache. |
|
RemoveFromCache (KProperty pProperty) | |
Remove a property from PropertyCache.
|
|
FBProperty | FindInCache (KProperty pProperty) |
Find a property in PropertyCache. |
__init__ | ( | ) |
Constructor.
__del__ | ( | ) |
Destructor.
int Add | ( | HFBProperty | Property | ) |
Add a property to the property manager.
Property | Handle to property to add. |
Property
was added.HFBProperty operator[] | ( | int | pIndex | ) |
Overloaded [] operator.
Access the property at pIndex
.
pIndex | Index of property to access. |
pIndex
.int GetCount | ( | ) |
Get the number of properties stored in property manager.
Find a property, based on its name.
pPropertyName | Name of property to look for. |
pMultilangLookup | When searching, indicate if the name lookup should also be done on the property name as shown in the GUI. (default = true) |
int Remove | ( | FBProperty | pProperty | ) |
Remove a property.
pProperty | Property to remove. |
AddToCache | ( | FBProperty | pProperty | ) |
Add a property to PropertyCache.
pProperty | Property to add to cache. |
RemoveFromCache | ( | KProperty | pProperty | ) |
Remove a property from PropertyCache.
pProperty | Property to remove from cache. |
FBProperty FindInCache | ( | KProperty | pProperty | ) |
Find a property in PropertyCache.
pProperty | Property to find. |