Menu list item form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormMenuListItem :public virtual IFormMenuListItem, public CForm
{
public:
static const String ClassName; // Class name
int getItemTypeIndex() override;
String getItemCaption() override;
bool setItemTypeIndex(const int value) override;
bool setItemCaption(const String &value) override;
CFormMenuListItem(IWindow *window, IRenderer *renderer);
~CFormMenuListItem() override;
static CFormMenuListItem *getInstance(); // Return form instance if any was created
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/MenuListItem/FormMenuListItem.h |