Spread for ASP.NET 7.0 Product Documentation
GetEnumerator Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > ISheetSelectionModel Interface : GetEnumerator Method


Glossary Item Box

Gets an enumerator that can iterate through the selections.

Syntax

Visual Basic (Declaration) 
Function GetEnumerator() As IEnumerator
Visual Basic (Usage)Copy Code
Dim instance As ISheetSelectionModel
Dim value As IEnumerator
 
value = instance.GetEnumerator()
C# 
IEnumerator GetEnumerator()

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 BasicCopy 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 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.