文档彩票走势图>>Spread Studio for .NET使用教程>>Spread Studio for .NET使用教程:创建单元格系列
Spread Studio for .NET使用教程:创建单元格系列
用户可以使用Spread创建单元格系列,同时对这些单元格属性和行为进行定义。这个系列范围可以是任何单元格。
》》》免费下载Spread Studio for .NET最新版
使用代码:
定义一个单元格系列,并对这一系列的Cell单元格对象设置Note对象。
示例:
这个示例代码用于设置单元格系列的Note属性。
C#
FarPoint.Win.Spread.Cell range1; range1 = fpSpread1.ActiveSheet.Cells[1, 1, 3, 3]; range1.Value = "Value Here"; range1.Note = "This is the note that describes the value."; VB
Dim range1 As FarPoint.Win.Spread.Cell range1 = fpSpread1.ActiveSheet.Cells(1, 1, 3, 3) range1.Value = "Value Here" range1.Note = "This is the note that describes the value."
使用Spread设计器
在Spread Designer的Cell,Column,或者Row编辑器中,只需选中你想要放到系列中的单元格,一旦选中,你所选择的属性设置就会应用到整个单元格系列。