Implements Memo form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormMemo :public virtual IFormMemo, public CForm
{
public:
static const String ClassName; // Class name
String getValue() override;
bool setValue(const String &value) override;
void ActivateFirstEnabledInput() override;
CFormMemo(IWindow *window, IRenderer *renderer);
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/Memo/FormMemo.h |