| Create method | 
Applies to
TESBHexEdit
Declaration
constructor Create(AOwner: TComponent); Ancestor Method
 Ancestor MethodImplementation
 
| constructor TESBHexEdit.Create (AOwner: TComponent);
begin
     inherited Create (AOwner);
     FValidChar := ['0'..'9', 'A'..'F', 'a'..'f'];
     FValidCharHold := FValidChar;
     FBoundLower := 0;
     FBoundUpper := High (Longword);
     fZeroPad := True;
     MaxLength := 8;
     DisplayText;
End; | 
|  |