TReportValue Record
Contains the values you can enter inside a report. This might be a TCellValue, an array of CellValues or an image as a ByteArray.
Syntax
Unit: FlexCel.Report
TReportValue = record;
Methods
Name |
Description |
Empty |
Returns an empty TReportValue |
Create |
Creates a new TReportValue from a TCellValue. Note: You normally won't need to call this method, since conversion is automatic.
|
HasValue |
Returns true if the record isn't empty.
|
HasCellValue |
Returns true if the record contains a TCellValue, meaning that the Value property is valid.
|
Operators
Properties
Name |
Description |
Value |
Value for the report, when it contains a TCellValue. If the record doesn't contain a TCellValue, this property will be TCellValue.Empty |
ValueArray |
Array of TCellValue inside this record. If this record doesn't contain an array of TCellValue, this property will be nil |
ValueBytes |
Value of this record as a byte array, used to represent images. If this record doesn't contain a byte array, this property will be null.
|