#include <fbxpropertyentryview.h>
FbxPropertyEntryView represents property entry in entry tables.
The property can be used as source or destination for the binding entry. Use this class to manipulate binding table's attributes.
Here is a code snippet to show how it used. FbxProperty lProp; FbxBindingTable lTable; FbxBindingTableEntry& lEntry = lBindingTable.AddNewEntry(); FbxPropertyEntryView lView( lEntry, true, true); lView.SetProperty( lProp.GetName());
Definition at line 39 of file fbxpropertyentryview.h.
Public Member Functions |
|
| const char * | GetProperty () const |
| Get the property name from the binding
entry. |
|
| void | SetProperty (const char *pPropertyName) |
| Set the property name to the binding entry.
|
|
| virtual const char * | EntryType () const |
| Get the entry type. |
|
Static Public Attributes |
|
| static const char * | sEntryType |
| Name of the entry type used in the binding
entry. |
|
Constructor and Destructor. |
|
| FbxPropertyEntryView (FbxBindingTableEntry *pEntry, bool pAsSource, bool pCreate=false) | |
| Constructor. |
|
| ~FbxPropertyEntryView () | |
| Destructor. |
|
| FbxPropertyEntryView | ( | FbxBindingTableEntry * | pEntry, |
| bool | pAsSource, | ||
| bool | pCreate =
false |
||
| ) |
Constructor.
| pEntry | The binding table entry to create the entry view for. |
| pAsSource | true to create the entry view as source,
false as destination. |
| pCreate | true to create the entry view, false
otherwise. |
| ~FbxPropertyEntryView | ( | ) |
Destructor.
| const char* GetProperty | ( | ) | const |
Get the property name from the binding entry.
| void SetProperty | ( | const char * | pPropertyName | ) |
Set the property name to the binding entry.
| pPropertyName | The property name to set. |
| virtual const char* EntryType | ( | ) | const [virtual] |
Get the entry type.
Reimplemented from FbxEntryView.
const char*
sEntryType [static] |
Name of the entry type used in the binding entry.
It should be "FbxPropertyEntry" in this case.
Reimplemented from FbxEntryView.
Definition at line 46 of file fbxpropertyentryview.h.