DataGridSortCommandEventArgs(Object, DataGridCommandEventArgs) Constructor

Definition

Initializes a new instance of the DataGridSortCommandEventArgs class.

public:
 DataGridSortCommandEventArgs(System::Object ^ commandSource, System::Web::UI::WebControls::DataGridCommandEventArgs ^ dce);
public DataGridSortCommandEventArgs (object commandSource, System.Web.UI.WebControls.DataGridCommandEventArgs dce);
new System.Web.UI.WebControls.DataGridSortCommandEventArgs : obj * System.Web.UI.WebControls.DataGridCommandEventArgs -> System.Web.UI.WebControls.DataGridSortCommandEventArgs
Public Sub New (commandSource As Object, dce As DataGridCommandEventArgs)

Parameters

commandSource
Object

The source of the command.

dce
DataGridCommandEventArgs

A DataGridCommandEventArgs that contains the event data.

Remarks

Use this constructor to create and initialize a new instance of the DataGridSortCommandEventArgs class.

When an instance of DataGridSortCommandEventArgs is created by a call to this constructor, the following properties are initialized to the specified values.

Property Initial value
CommandSource The value of the commandSource parameter.
SortExpression The value of the dce.CommandArgument parameter.

Applies to