FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : RowCount プロパティ |
'Declaration Public Property RowCount As Integer
'使用法 Dim instance As SheetView Dim value As Integer instance.RowCount = value value = instance.RowCount
public int RowCount {get; set;}
int c, r; c = fpSpread1.ActiveSheet.ColumnCount; r = fpSpread1.ActiveSheet.RowCount; listBox1.Items.Add(c.ToString() + " - " + r.ToString());
Dim c, r As Integer c = FpSpread1.ActiveSheet.ColumnCount r = FpSpread1.ActiveSheet.RowCount ListBox1.Items.Add(c.ToString() & " - " & r.ToString())