Content


NTL
Core
IListItemCaption

IListItemCaption


Describes interface for object which have caption. If you would like your list item is displayed with property caption/name in Form Builder, derive it from this interface and Form Builder will use the caption returned by getCaption() to display the item.

You can find more information in comments below.

class IListItemCaption: public virtual IListItem
{
public:
    virtual String getCaption() = 0; // Return caption 

    virtual bool setCaption(const String &value) = 0; // Set caption 
};
Namespace: nitisa
Include: Nitisa/Interfaces/IListItemCaption.h