#include <fbstory.h>
Public Member Functions | |
virtual int | Add (FBStoryTrack *pItem) |
Add a sub-track to the property list. | |
virtual int | Remove (FBStoryTrack *pItem) |
Remove sub-track pItem from property list. | |
virtual void | RemoveAt (int pIndex) |
Remove the sub-track at pIndex. | |
virtual FBStoryTrack * | operator[] (int pIndex) |
Get the sub-track at pIndex. | |
virtual int | GetCount () |
Get the number of sub-track. | |
virtual FBComponent * | GetAt (int pIndex) |
Get the Component at pIndex. |
virtual int Add | ( | FBStoryTrack * | pItem | ) | [virtual] |
Add a sub-track to the property list.
pItem | Sub-Track to add to list. |
virtual int Remove | ( | FBStoryTrack * | pItem | ) | [virtual] |
Remove sub-track pItem from property list.
pItem | Sub-Track to remove from list. |
virtual void RemoveAt | ( | int | pIndex | ) | [virtual] |
Remove the sub-track at pIndex.
pIndex | Index of sub-track to remove. |
Reimplemented from FBPropertyListComponentBase.
virtual FBStoryTrack* operator[] | ( | int | pIndex | ) | [virtual] |
Get the sub-track at pIndex.
pIndex | Index of sub-track to get. |
Reimplemented from FBPropertyListComponentBase.
virtual int GetCount | ( | ) | [virtual] |
Get the number of sub-track.
Reimplemented from FBPropertyListComponentBase.
virtual FBComponent* GetAt | ( | int | pIndex | ) | [inline, virtual] |
Get the Component at pIndex.
pIndex | Index of Component to get a handle on. |
Implements FBPropertyListComponentBase.
Definition at line 270 of file fbstory.h.
{ return (FBComponent*)operator[](pIndex); }