FarPoint.Web.Spread 名前空間 > SheetViewCollection クラス : Item プロパティ |
オーバーロード | 説明 |
---|---|
Item(Int32) | コレクション内の指定した位置のシートを取得または設定します。 |
Item(String) | コレクション内の指定した位置にあるシート(SheetViewオブジェクト)を取得または設定します。 |
例外 | 説明 |
---|---|
System.ArgumentException | シートインデックスの有効範囲は0〜シート合計数です。 |
FarPoint.Web.Spread.SheetView sv = FpSpread1.Sheets[0]; sv.ColumnCount = 5; sv.PageSize = 10; sv.RowCount = 50; sv.GridLineColor = Color.Red; sv.GridLines = GridLines.Vertical; FpSpread1.Pager.Position = FarPoint.Web.Spread.PagerPosition.Top;
Dim sv As FarPoint.Web.Spread.SheetView sv = FpSpread1.Sheets.Item(0) sv.ColumnCount = 5 sv.PageSize = 10 sv.RowCount = 50 sv.GridLineColor = Color.Red sv.GridLines = GridLines.Vertical FpSpread1.Pager.Position = FarPoint.Web.Spread.PagerPosition.Top