XRDesignPanel.ExecuteCommand(CommandID, Object[]) Method
OBSOLETE
The ExecuteCommand method is obsolete now. Use the ExecCommand method instead.
Executes the specified command with the specified set of parameters.
Namespace: DevExpress.XtraReports.UserDesigner
Assembly: DevExpress.XtraReports.v24.1.Extensions.dll
NuGet Package: DevExpress.Win.Reporting
Declaration
[Obsolete("The ExecuteCommand method is obsolete now. Use the ExecCommand method instead.")]
public bool ExecuteCommand(
CommandID cmdID,
object[] parameters
)
Parameters
Name | Type | Description |
---|---|---|
cmdID | CommandID | A CommandID object. |
parameters | Object[] | An array of Object values that specify the parameters for the command to be executed. |
Returns
Type | Description |
---|---|
Boolean | true if the specified command is executed; otherwise, false. |
Remarks
The ExecuteCommand method is now obsolete. Use the XRDesignPanel.ExecCommand method instead.
See Also