Spread for ASP.NET 10 Product Documentation
Row Property (AggregateArgs)
Example 


Gets the row index.
Syntax
'Declaration
 
Public ReadOnly Property Row As Integer
'Usage
 
Dim instance As AggregateArgs
Dim value As Integer
 
value = instance.Row
public int Row {get;}
Example
This example returns the row in the assigned aggregate.
protected void FpSpread1Aggregate(object sender, FarPoint.Web.Spread.Model.AggregateArgs e) 
{
    string msg = "The row in the aggregate is " + e.Row.ToString();
    Response.Write("<script language='javascript'>alert('" + msg + "')</script>")
}
 
Protected Sub FpSpread1Aggregate(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.Model.AggregateArgs) Handles FpSpread1.Aggregate
    Dim msg As String = "The row in the aggregate is " & e.Row.ToString()
    TextBox1.Text = msg
End Sub
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

AggregateArgs Class
AggregateArgs Members

 

 


Copyright © GrapeCity, inc. All rights reserved.