Gets a float that has all leading and trailing 0's and spaces removed removed.
OutputVar := instance.GetTrimmed()
Gets a float that has all leading and trailing 0's and spaces removed removed.
If ReturnAsObject Property for this instance is true then returns MfFloat instance; otherwise returns float var containing value.
If Value is a whole number then a value will be returned without a decimal.
If ReturnAsObject Property for this instance is true then a MfFloat instance will be returned with its Format set to display a trimmed value, See example below.
Throws MfNullReferenceException if called as a static method.
f := new MfFloat(0.5) ; ReturnAsObject is false
result := f.Value
MsgBox Result:'%result%' ; Displays Result:'0.500000'
result := f.GetTrimmed() ; returns var
MsgBox Result:'%result%' ; displays '0.5'
f := new MfFloat(0.5, , , "10.5") ; ReturnAsObject and Readonly are false
result := f.Value
MsgBox Result:'%result%' ; Displays Result:' 0.50000'
result := f.GetTrimmed() ; returns var
MsgBox Result:'%result%' ; displays '0.5'
f := new MfFloat(256.030, true, , "10.5") ; ReturnAsObject is true, Readonly is False
result := f.Value
MsgBox Result:'%result%' ; Displays Result:' 256.03000'
fTrim := f.GetTrimmed() ; returns MfFloat object instance because ReturnAsObject is true
result := fTrim.Value
MsgBox Result:'%result%' ; Displays Result:'256.03'
result := fTrim.Format
MsgBox Result:'%result%' ; Displays Result:'0.2'
f := new MfFloat()
f.TotalWidth := "012"
f.DecimalPlaces := "5"
f.Value := 256.030
f.ReturnAsObject := true
result := f.Value
MsgBox Result:'%result%' ; Displays Result:'000256.03000'
fTrim := f.GetTrimmed() ; returns MfFloat object instance because ReturnAsObject is true
result := fTrim.Value
MsgBox Result:'%result%' ; Displays Result:'256.03'
result := fTrim.Format
MsgBox Result:'%result%' ; Displays Result:'0.2'
f := new MfFloat()
f.Format := "-012.5"
f.Value := 256.1
f.ReturnAsObject := true
result := f.Value
MsgBox Result:'%result%' ; Displays Result:'256.10000 '
fTrim := f.GetTrimmed() ; returns MfFloat object instance because ReturnAsObject is true
result := fTrim.Value
MsgBox Result:'%result%' ; Displays Result:'256.1'
result := fTrim.Format
MsgBox Result:'%result%' ; Displays Result:'0.1'
f := new MfFloat(256.0, true, , "10.5") ; ReturnAsObject is true, Readonly is False
result := f.Value
MsgBox Result:'%result%' ; Displays Result:' 256.00000'
fTrim := f.GetTrimmed() ; returns MfFloat object instance because ReturnAsObject is true
result := fTrim.Value
MsgBox Result:'%result%' ; a whole number is returned - Displays Result:'256'
result := fTrim.Format
MsgBox Result:'%result%' ; Displays Result:'0.0'