Rock.Web.UI.Controls.RowEventArgs.RowEventArgs C# (CSharp) Method

RowEventArgs() public method

Initializes a new instance of the RowEventArgs class.
public RowEventArgs ( int rowIndex, object rowKeyValue ) : System
rowIndex int Index of the row.
rowKeyValue object The row key value.
return System
        public RowEventArgs( int rowIndex, object rowKeyValue )
        {
            RowIndex = rowIndex;
            RowKeyValue = rowKeyValue;
        }

Same methods

RowEventArgs::RowEventArgs ( GridViewRow row ) : System
RowEventArgs