Describes minimum required functionality from PasswordEdit control.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IPasswordEdit :public virtual IControl
{
public:
virtual String getPassword() = 0; // Return password
virtual wchar_t getReplaceSymbol() = 0; // Return character which will replace password characters when displayed
virtual bool setPassword(const String &value) = 0; // Set password
virtual bool setReplaceSymbol(const wchar_t value) = 0; // Set character which will replace password characters when displayed
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/IPasswordEdit.h |