|
CFx SDK Documentation 2026 SP0
|
#include <FxUI.h>
Public Member Functions | |
| virtual | ~CFxUIImageItemCollection () |
| virtual bool | Add (CFxUIImageItem *pItem)=0 |
| virtual bool | Remove (CFxUIImageItem *pItem)=0 |
| virtual unsigned int | GetCount () const =0 |
| virtual CFxUIImageItem * | GetItem (unsigned int index)=0 |
| virtual void | Clear (bool bDeleteItems)=0 |
| virtual bool | Has (const CFxUIImageItem *pItem)=0 |
Description: Represents the image tile menu item collection of the user interface. Library: DDKERNEL
|
inlinevirtual |
|
pure virtual |
Description: Adds pItem. Arguments:
| [in,out] | pItem | If non-null, the CFxUIImageItem* to add. Return Value: True if it succeeds, false if it fails. |
|
pure virtual |
Description: Clears this object to its blank/initial state. Arguments:
| bDeleteItems | true to delete the items. |
|
pure virtual |
Description: Gets the count.
Return Value:
The count.
|
pure virtual |
Description: Gets an item. Arguments:
| index | Zero-based index of the. Return Value: Null if it fails, else the item. |
|
pure virtual |
|
pure virtual |
Description: Removes the given pItem. Arguments:
| [in,out] | pItem | If non-null, the CFxUIImageTileMenuItem* to remove. Return Value: True if it succeeds, false if it fails. |