FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > ISheetSelectionModel Interface : GetEnumerator Method |
'Declaration Function GetEnumerator() As IEnumerator
'Usage Dim instance As ISheetSelectionModel Dim value As IEnumerator value = instance.GetEnumerator()
IEnumerator GetEnumerator()
FarPoint.Win.Spread.Model.ISheetSelectionModel sel; IEnumerator se; bool b; 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, 0, 3, 2); se = sel.GetEnumerator(); b = se.MoveNext(); if (b == true) { cr = (FarPoint.Win.Spread.Model.CellRange)se.Current; label1.Text = "First selection is Col - " + cr.Column + " Row - " + cr.Row + " Col2 - " + cr.ColumnCount + " Row2 - " + cr.RowCount; }
Dim sel As FarPoint.Win.Spread.Model.ISheetSelectionModel Dim se As IEnumerator Dim b As Boolean Dim cr As FarPoint.Win.Spread.Model.CellRange sel = FpSpread1.ActiveSheet.Models.Selection sel.AddSelection(0, 0, 2, 2) sel.AddSelection(3, 0, 3, 2) se = sel.GetEnumerator() b = se.MoveNext() If b = True Then cr = se.Current() Label1.Text = "First selection is Col - " & cr.Column & " Row - " & cr.Row & " Col2 - " & cr.ColumnCount & " Row2 - " & cr.RowCount End If
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8