文檔首頁(yè)>>Spread Studio for .NET使用教程>>Spread Studio for .NET使用教程:創(chuàng)建單元格系列
Spread Studio for .NET使用教程:創(chuàng)建單元格系列
用戶可以使用Spread創(chuàng)建單元格系列,同時(shí)對(duì)這些單元格屬性和行為進(jìn)行定義。這個(gè)系列范圍可以是任何單元格。
》》》免費(fèi)下載Spread Studio for .NET最新版
使用代碼:
定義一個(gè)單元格系列,并對(duì)這一系列的Cell單元格對(duì)象設(shè)置Note對(duì)象。
示例:
這個(gè)示例代碼用于設(shè)置單元格系列的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設(shè)計(jì)器
在Spread Designer的Cell,Column,或者Row編輯器中,只需選中你想要放到系列中的單元格,一旦選中,你所選擇的屬性設(shè)置就會(huì)應(yīng)用到整個(gè)單元格系列。