Gets an enumerator that can iterate through the selections.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Function GetEnumerator() As IEnumerator  | 
 
            
            
            Return Value
IEnumerator object for enumerating to the next selection
 
            
						
            
            
            
            
            
Example
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.Model.ISheetSelectionModel iss;
iss = (FarPoint.Web.Spread.Model.ISheetSelectionModel)FpSpread1.ActiveSheetView.SelectionModel;
iss.SetSelection(0, 0, 2, 2)
iss.AddSelection(3, 0, 1, 2);
IEnumerator se; 
bool b; 
FarPoint.Web.Spread.Model.CellRange cr; 
se = sel.GetEnumerator(); 
b = se.MoveNext(); 
if (b == true) 
{ 
cr = (FarPoint.Web.Spread.Model.CellRange)se.Current; 
}
string msg = "The first column in the selection is " + cr.Column.ToString();
Response.Write("<script language='javascript'>alert('" + msg + "')</script>");
 | 
 
| Visual Basic |  Copy Code | 
|---|
Dim iss As FarPoint.Web.Spread.Model.ISheetSelectionModel
iss = FpSpread1.ActiveSheetView.SelectionModel
iss.SetSelection(0, 0, 1, 4)
iss.AddSelection(2, 0, 1, 4)
Dim se As IEnumerator
Dim b As Boolean
Dim cr As FarPoint.Web.Spread.Model.CellRange
se = iss.GetEnumerator()
b = se.MoveNext
If b = True Then
cr = se.Current
End If
Dim msg As String = "The first column in the selection is " + cr.Column.ToString()
Response.Write("<script language='javascript'>alert('" & msg & "')</script>") | 
 
 
            
            
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also