|
发表于 2006-8-7 17:21:46
|
显示全部楼层
1:楼主指定的这个单元格是一个表达式单元格。单元格的类型为TCellType,其取值包括ctCell,ctFieldLabel, ctField, ctPicture, ctSQL, ctDataChart, ctExpression。
示例代码:ASheet.CellTypes[ASheet.Areas[0].Right - 3, ASheet.Areas[0].Bottom] := TCellType.ctExpression;
2:{ 基本属性 }
property Left: Integer index 0 read GetSize write SetSize;
property Top: Integer index 1 read GetSize write SetSize;
property Right: Integer index 2 read GetSize write SetSize;
property Bottom: Integer index 3 read GetSize write SetSize;
// 区域中左上和右下两点坐标(Left,Top)Right,Bottom)
{ 区域块属性 }
property HeaderRows: Integer index 0 read GetRow write SetRow default 0; // 区域头
property PageHeaderRows: Integer index 1 read GetRow write SetRow default 0; // 页头
property PageFooterRows: Integer index 2 read GetRow write SetRow default 0; // 页尾
property FooterRows: Integer index 3 read GetRow write SetRow default 0; // 区域尾 |
|