FormViewCommandEventArgs(Object, CommandEventArgs) Constructor

Definition

Initializes a new instance of the FormViewCommandEventArgs class.

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

Parameters

commandSource
Object

The source of the command.

originalArgs
CommandEventArgs

A CommandEventArgs that contains event data.

Remarks

Use this constructor to initialize a new instance of the FormViewCommandEventArgs class.

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

Property Initial value
CommandArgument The value of the CommandArgument property of the CommandEventArgs contained in the originalArgs parameter.
CommandName The value of the CommandName property of the CommandEventArgs contained in the originalArgs parameter.
CommandSource The object contained in the commandSource parameter.

Note

This constructor is used primarily by control developers when raising events.

Applies to

See also