asp.net.ph

GridViewRowEventArgs Constructor

System.Web.UI.WebControls Namespace   GridViewRowEventArgs Class


.NET Framework version 2.0

Initializes a new instance of the GridViewRowEventArgs class.

[ VB ]
Public Sub New ( _
   ByVal row As GridViewRow _
)

[ C# ]
public GridViewRowEventArgs (
   GridViewRow row
);

[ C++ ]
public: GridViewRowEventArgs (
   GridViewRow* row
);

[ JScript ]
public function GridViewRowEventArgs (
   row : GridViewRow
);

Parameters

row
The GridViewRow associated with the event. The Row property is set to this value.

Remarks

The following table shows initial property values for an instance of GridViewRowEventArgs.

Property Initial Value
Row The value of the row parameter.

Example

The following example demonstrates how to initialize a new instance of the GridViewRowEventArgs class.

void Row_Created ( Object src, GridViewRowEventArgs e ) {
   GridViewRowEventArgs row_arg = new GridViewRowEventArgs ( e.Row );
}
  C# VB

See Also

GridViewRowEventArgs Members Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph