FlexCel Studio for VCL/LCL
ContentsIndex
PreviousUpNext
TFlexCelImport.Cell Property

Returns or sets the Cell value and format of the cell at the same time.

Pascal
property Cell [Row, Col: integer]: TXlsCellValue;
C++
__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!