You are reading help file online using chmlib.com
|
Rave Reports Developer Reference AsFloat property (read/write) archived BEX only |
Top Previous Next |
Declaration property AsFloat: Double;
Default 0.0
Category
Components TDbTableColumn, TTableColumn
Description Returns or sets the current contents of a table column as a floating point value. If the contents can not be converted to a floating point value, 0.0 will be returned.
See also
Example (Delphi) WITH TableColumn do begin PageTotal := PageTotal + AsFloat; end; { with }
Example (C++Builder) TableColumn->PageTotal := TableColumn->PageTotal + TableColumn->AsFloat; |
You are reading help file online using chmlib.com
|