基本操作与 dxRichEditControl控件学习(02) 类似
多了一个 公式栏dxSpreadSheetFormulaBar1
设置dxSpreadSheetFormulaBar1的Align为alTop
dxSpreadSheet1的Align为alClient
TdxSpreadSheet基本上还原了EXCEL的基本功能,用户可以像EXCEL一样正常操作这个控件,比如控件下ctrl+1也能调出单元格属性设置.
另外,就算用户电脑上没有安装EXCEL,程序依然能够正常运行.
简单编辑时用着还行,代码操作的太复杂的话就算了,不建议使用.
dxSpreadSheet1.SheetCount : 工作表总数
dxSpreadSheet1.AddSheet('新工作表'): 插入新工作表,名称为'新工作表'
dxSpreadSheet1.Sheets[0].Caption: 第一个工作表的名称
dxSpreadSheet1.ActiveSheet.caption: 正在编辑(激活)的工作表的名称.
dxSpreadSheet1.Sheets[1].Active:=True 激活第二个工作表(前提是有第二个表,否则出错)
dxSpreadSheet1.ActiveSheetIndex:= 1 作用和上一条相同.
两个隐藏 事件,不知道有什么用。
dxSpreadSheetSetLandscapePageOrientation1
dxSpreadSheetSetPortraitPageOrientation1
标签:dxSpreadSheet1,控件,dxSpreadSheetFormulaBar1,05,EXCEL,学习,工作 From: https://www.cnblogs.com/tulater/p/17291828.html