DetailsViewCommandEventArgs(Object, CommandEventArgs) 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 DetailsViewCommandEventArgs class.
public:
DetailsViewCommandEventArgs(System::Object ^ commandSource, System::Web::UI::WebControls::CommandEventArgs ^ originalArgs);
public DetailsViewCommandEventArgs (object commandSource, System.Web.UI.WebControls.CommandEventArgs originalArgs);
new System.Web.UI.WebControls.DetailsViewCommandEventArgs : obj * System.Web.UI.WebControls.CommandEventArgs -> System.Web.UI.WebControls.DetailsViewCommandEventArgs
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 DetailsViewCommandEventArgs class.
The following table shows the initial property values for an instance of DetailsViewCommandEventArgs.
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 object 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.