|
FlexCel Studio for VCL/LCL
|
Returns or sets the Cell value and format of the cell at the same time.
property Cell [Row, Col: integer]: TXlsCellValue;
__property TXlsCellValue Cell[int Row, Col];
This method is equivalent to calling CellValue and CellFormat together, but it is actually a little faster.
In code:
Cv:=Cell[1,1];
Is functionally the same as
Cv.Value:=CellValue[1,1]; Cv.Format:=CellFormat[1,1];
|
Copyright (c) 2002-2008 TMS Software. All rights reserved.
|
|
What do you think about this topic? Send feedback!
|