PowerTools MultiRow for Windows Forms 8.0J
セル数の取得


各セクションのセル数の取得
セクション内に配置されているセルの数を取得するには、CellCollection.Countプロパティを使用します。

次のコードは、列ヘッダセクション、行、列フッタセクションに配置されているセル数を取得します。
Console.WriteLine(GcMultiRow1.Template.ColumnHeaders(0).Cells.Count)
Console.WriteLine(GcMultiRow1.Template.Row.Cells.Count)
Console.WriteLine(GcMultiRow1.Template.ColumnFooters(0).Cells.Count)
Console.WriteLine(gcMultiRow1.Template.ColumnHeaders[0].Cells.Count);
Console.WriteLine(gcMultiRow1.Template.Row.Cells.Count);
Console.WriteLine(gcMultiRow1.Template.ColumnFooters[0].Cells.Count);
   
参照

 

 


© 2008-2015 GrapeCity inc. All rights reserved.