GrapeCity ActiveReports for .NET 14.0J
Count プロパティ (DDSheets)
使用例 

GrapeCity.ActiveReports.Export.Excel アセンブリ > GrapeCity.SpreadBuilder 名前空間 > DDSheets クラス : Count プロパティ
DDSheetsコレクションに含まれる要素の数を取得します。
シンタックス
'宣言
 
Public ReadOnly Property Count As Integer
public int Count {get;}

プロパティ値

Integer。
解説
このプロパティは、読み込みのみです。
使用例
if (MessageBox.Show ("Your spreadsheet is " + sb.Sheets.Count.ToString() + " sheet(s) long. Okay to save?", "Save", MessageBoxButtons.YesNo) == DialogResult.Yes) 
{
    //ワークブックをExcelファイルに保存する
    sb.Save (Application.StartupPath + @"\x.xls");
    MessageBox.Show("Your Spreadsheet, " + sb.Sheets[0].Columns(0).OwnerSheet.Name + ", has been saved to " + Application.StartupPath + "\\x.xls");
}
sb.Clear();
If MessageBox.Show("Your spreadsheet is " + sb.Sheets.Count.ToString() + " sheet(s) long. Okay to save?", "Save", MessageBoxButtons.YesNo) = DialogResult.Yes Then
	'ワークブックをExcelファイルに保存する
	sb.Save(Application.StartupPath + "\x.xls")
	MessageBox.Show("Your Spreadsheet, " + sb.Sheets(0).Columns(0).OwnerSheet.Name + ", has been saved to " + Application.StartupPath + "\x.xls")
End If
sb.Clear()
参照

DDSheets クラス
DDSheets メンバ