• <menu id="w2i4a"></menu>
  • logo Spread Studio for .NET使用教程
    文檔首頁>>Spread Studio for .NET使用教程>>Spread Studio for .NET使用教程:添加工作表

    Spread Studio for .NET使用教程:添加工作表


    用戶可以在Spread組件中添加一個或者幾個工作表。默認(rèn)情況下,組件只有一個工作表,名為Sheet 1,工作表引用索引為0。工作表索引是從零開始。用戶可以通過代碼簡單地改變工作表數(shù)或添加工作表。如果您正在使用自定義工作表,一定要指定表的名稱。

    默認(rèn)情況下用戶可以添加新的工作表??梢酝ㄟ^工作表名稱旁邊的新工作表圖標(biāo)標(biāo)簽條。如果工作表數(shù)大于1,標(biāo)簽條默認(rèn)顯示。你可以通過設(shè)置TabStripPolicy屬性進(jìn)行改變。也可以通過將TabStripInsertTab屬性設(shè)置為false防止用戶添加新的工作表通過設(shè)置為false (FpSpread1.TabStripInsertTab = False)。

    》》》免費(fèi)下載Spread Studio for .NET最新版

    通過完成以下步驟添加新的工作表。

    使用屬性窗口

    1. 在設(shè)計時屬性窗口中,選擇Spread組件。
    2. 選擇Sheets屬性。
    3. 單擊按鈕來顯示SheetView Collection Editor。
    4. 單擊Add按鈕在集合中添加一個工作表。
    5. 一個名叫SheetViewn的新工作表(其中n是一個整數(shù))就會添加到組件中。
    6. 如果你想改變工作表名稱,單擊屬性列表中的SheetName屬性,然后鍵入新的名稱。
    7. 點(diǎn)擊OK以關(guān)閉編輯器。

    使用快捷方式

    1. 創(chuàng)建一個新的SheetView對象。
    2. 設(shè)置名稱等工作表屬性。
    3. 調(diào)用Sheets快捷對象Add方法在組件的SheetViewCollection集合中添加新的工作表。

    示例:

    通過一下示例代碼,將在組件中添加一個新的工作表,然后命名為“North”,使它有10列和100行。

    C#

    // Create a new sheet.
    
     FarPoint.Win.Spread.SheetView newsheet = new FarPoint.Win.Spread.SheetView();
    
     newsheet.SheetName = "North";
    
     newsheet.ColumnCount = 10;
    
     newsheet.RowCount = 100;
    
     // Add the new sheet to the component.
    
     fpSpread1.Sheets.Add(newsheet);
    

    VB

    ' Create a new sheet.
    
     Dim newsheet As New FarPoint.Win.Spread.SheetView()
    
     newsheet.SheetName = "North"
    
     newsheet.ColumnCount = 10
    
     newsheet.RowCount = 100
    
     ' Add the new sheet to the component.
    
     FpSpread1.Sheets.Add(newsheet)
    
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();