| Create method | 
Applies to
TESBIPEdit
Declaration
constructor Create(AOwner: TComponent); Ancestor Method
 Ancestor MethodImplementation
 
| constructor TESBIPEdit.Create (AOwner: TComponent);
begin
     inherited Create (AOwner);
     FValidChar := ['.', '0'..'9'];
     FValidCharHold := FValidChar;
     FBoundLower := 0;
     FBoundUpper := High (Longword);
     DisplayText;
End; | 
|  |