文档彩票走势图>>Spread Studio for .NET使用教程>>Spread Studio for .NET使用教程:使用活动工作表
Spread Studio for .NET使用教程:使用活动工作表
活动工作表是指当前接收用户交互性指示的工作表。你可以使用FpSpread对象的ActiveSheet属性以编程方式指定活动工作表。您还可以使用ActiveSheetIndex对象指定活动工作表的索引。
通常,活动工作表显示在其它工作表之上。
》》》免费下载Spread Studio for .NET最新版
使用快捷方式:
在指定工作表属性时,你可以使用ActiveSheet作为活动工作表的快捷对象。
示例:
设置活动工作表的属性,并将它分配到第二个工作表。
C#
// Allow three sheets in the component. fpSpread1.Sheets.Count = 3; // Set third sheet (in zero-based index) be set to active sheet. fpSpread1.ActiveSheetIndex = 2; // Set some properties of the active sheet. fpSpread1.ActiveSheet.ColumnCount = 8; fpSpread1.InterfaceRenderer = NULL; fpSpread1.ActiveSheet.GrayAreaBackColor = Color.Purple;VB
' Allow three sheets in the component. FpSpread1.Sheets.Count = 3 ' Set third sheet (in zero-based index) be set to active sheet. FpSpread1.ActiveSheetIndex = 2 ' Set some properties of the active sheet. FpSpread1.ActiveSheet.ColumnCount = 8 FpSpread1.InterfaceRenderer = Nothing FpSpread1.ActiveSheet.GrayAreaBackColor = Color.Purple