Class SpreadStreamRowEventArgs
Provides event arguments for the SpreadRowCreated and SpreadRowExporting events.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.Export
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class SpreadStreamRowEventArgs : EventArgs
Constructors
SpreadStreamRowEventArgs(Int32, Type, GridViewRowInfo, Object)
Initializes a new instance of the SpreadStreamRowEventArgs class.
Declaration
public SpreadStreamRowEventArgs(int gridRowIndex, Type gridRowInfoType, GridViewRowInfo gridViewRowInfo, object row)
Parameters
System.Int32
gridRowIndex
Index of the grid row. |
System.Type
gridRowInfoType
Type of the grid row info. |
GridViewRowInfo
gridViewRowInfo
The grid view row info. |
System.Object
row
The row. |
Properties
GridRowIndex
Gets the row index of source grid.
Declaration
public int GridRowIndex { get; }
Property Value
System.Int32
|
GridRowInfo
Gets a reference to the row of source grid.
Declaration
public GridViewRowInfo GridRowInfo { get; }
Property Value
GridViewRowInfo
|
GridRowInfoType
Gets the row type.
Declaration
public Type GridRowInfoType { get; }
Property Value
System.Type
|
Row
Gets the
IRowExporter
element.
Declaration
public object Row { get; }
Property Value
System.Object
|