FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.Model 名前空間 > ISheetSelectionModel インタフェース : Item プロパティ |
'使用法 Dim instance As ISheetSelectionModel Dim index As Integer Dim value As CellRange value = instance.Item(index)
FarPoint.Win.Spread.Model.ISheetSelectionModel sel;
FarPoint.Win.Spread.Model.CellRange cr;
sel = (FarPoint.Win.Spread.Model.ISheetSelectionModel)fpSpread1.ActiveSheet.Models.Selection;
sel.AddSelection(0, 0, 2, 2);
sel.AddSelection(3, 2, 2, 4);
cr = sel[1];
label1.Text = "The first column in the second selection is " + cr.Column.ToString();
Dim sel As FarPoint.Win.Spread.Model.ISheetSelectionModel Dim cr As FarPoint.Win.Spread.Model.CellRange sel = FpSpread1.ActiveSheet.Models.Selection sel.AddSelection(0, 0, 2, 2) sel.AddSelection(3, 2, 2, 4) cr = sel.Item(1) Label1.Text = "The first column in the second selection is " & cr.Column.ToString()