| Create method | 
Applies to
TESBBaseNumericEdit
Declaration
constructor Create(AOwner: TComponent); Ancestor Method
 Ancestor MethodImplementation
 
| constructor TESBBaseNumericEdit.Create (AOwner: TComponent);
begin
     inherited Create (AOwner);
     fBlankWhenZero := False;
     fForceDecimals := False;
     fDecimals := 4;
     fIntValue := 0;
     fFloatValue := 0.0;
     fUseSignToggling := True;
     fZeroPad := False;
     fThousandSeparators := essNone;
     fCustomSeparators := False;
     fCustomDecimal := DecimalSeparator;
     fCustomThousands := ThousandSeparator;
End; | 
|  |