DataGridItemEventArgs(DataGridItem) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DataGridItemEventArgs class.
public:
DataGridItemEventArgs(System::Web::UI::WebControls::DataGridItem ^ item);
public DataGridItemEventArgs (System.Web.UI.WebControls.DataGridItem item);
new System.Web.UI.WebControls.DataGridItemEventArgs : System.Web.UI.WebControls.DataGridItem -> System.Web.UI.WebControls.DataGridItemEventArgs
Public Sub New (item As DataGridItem)
Parameters
- item
- DataGridItem
A DataGridItem that represents an item in the DataGrid.
Examples
The following code example demonstrates how to create and initialize a new instance of the DataGridItemEventArgs class.
void Item_Created(Object sender, DataGridItemEventArgs e)
{
DataGridItemEventArgs DG_event_arg = new DataGridItemEventArgs(e.Item);
}
Sub Item_Created(sender As Object, e As DataGridItemEventArgs)
Dim DG_event_arg As New DataGridItemEventArgs(e.Item)
End Sub
Remarks
Use this constructor to create and initialize a new instance of the DataGridItemEventArgs class.
When an instance of DataGridItemEventArgs is created by a call to this constructor, the following property is initialized to the specified value.
Item | Description |
---|---|
Item | The item parameter. |