| Create method | 
Applies to
TESBSciFloatEdit
Declaration
constructor Create(AOwner: TComponent); Ancestor Method
 Ancestor MethodImplementation
 
| constructor TESBSciFloatEdit.Create (AOwner: TComponent);
begin
     inherited Create (AOwner);
     FValidChar := ['+', '-', ThousandSeparator, DecimalSeparator, '0'..'9', 'E', 'e'];
     FValidCharHold := FValidChar;
     fSciRange := False;
     fSciMin := 0.0001;
     fSciMax := 1000000.0;
     FBoundLower := 0.0;
     FBoundUpper := 0.0;
     fBlankWhenZero := False;
     fDecimals := 4;
     fFloatValue := 0.0;
     FFullAccuracy := False;
     FScale := 1.0;
     fTrimTrailingZeroes := False;
     DisplayText;
End; | 
|  |