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