TFREditContents - Events - Properties
Description
Use TFREdit to insert Edit control into your HTML document.
Contents - TFREdit - Properties
OnGetMaxLen
Delphi declaration
property OnGetMaxLen: TFRGetIntValue read FGetMaxLen write FGetMaxLen;
C++ declaration
__property TFRGetIntValue OnGetMaxLen={ read=FGetMaxLen, write=FGetMaxLen }
Description
Use OnGetMaxLen to get maximal length of t he text inserted into edit control by t he client at runtime.
HText
Delphi declarationMAXLENGTH
property HText;
C++ declaration
__property HText
PasswordDelphi declaration
property MAXLENGTH: Integer read FMaxLen write FMaxLen default 0;
C++ declaration
__property int MAXLENGTH={ read=FMaxLen, write=FMaxLen, default=0 }
Description
Maximal length of t he text inserted into edit control by t he client.
ReadOnlyDelphi declaration
property Password: Boolean read GetPassword write SetPassword;
C++ declaration
__property bool Password={ read=GetPassword, write=SetPassword, nodefault }
Description
If Password is true, INPUT of type PASSWORD is inserted into t he HTML document, meaning that t he contents of this edit will be shown at t he client side as ****
Delphi declaration
property ReadOnly;
C++ declaration
__property ReadOnly