Skip to main content
All docs
V19.2

DeleteButtonInfo.Command Property

Gets or sets a command associated with the button. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

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

Declaration

public ICommand Command { get; set; }

Property Value

Type Description
ICommand

An object implementing the ICommand interface that represents a command associated with the button.

Remarks

If the command should not be executed on the delete button, but on another element, specify the element via the DeleteButtonInfo.CommandTarget property. You can also pass a parameter to the command using the DeleteButtonInfo.CommandParameter property

See Also