Skip to main content
A newer version of this page is available. .

BackstageButtonItem.CommandParameter Property

Gets or sets additional parameters for a BackstageButtonItem.Command.

Namespace: DevExpress.Xpf.Ribbon

Assembly: DevExpress.Xpf.Ribbon.v19.2.dll

Declaration

public object CommandParameter { get; set; }

Property Value

Type Description
Object

An object defining command parameters.

Remarks

When you set the BackstageButtonItem.Command, which will execute when a button is clicked, you can set up different parameters via the CommandParameter property. Normally, the CommandParameter is used to pass specific information to the command when it is executed. The type of the data is defined by the command. For more information see the ICommandSource.CommandParameter Property article in MSDN.

See Also