FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : RowCount プロパティ |
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())