| Create method | 
Applies to
TESBCustomEdit
Declaration
constructor Create(AOwner: TComponent); 
 Implementation
 
| constructor TESBCustomEdit.Create (AOwner: TComponent);
begin
	inherited Create (AOwner);
	fStrValue := '';
	fStoreValue := True;
	fNoDisplayUpdate := False;
	fInUpdate := False;
	fValidChar := [#32..#255];
	fValidCharHold := fValidChar;
	fNull := False;
	fNullStr := ESBNullStr;
	fAllowKbdNull := True;
	fBlankWhenNull := False;
	fColor_Defaults := True;
	fBlankIsNull := False;
     fHotTrack := False;
	SetColors2Defaults;
     UpdateColors;
End; | 
|  |