Skip to main content

DocumentCheckAction.UncheckedCommand Property

Gets a Command, executed when the current DocumentCheckAction is unchecked.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public ICommand<Document> UncheckedCommand { get; }

Property Value

Type Description
DevExpress.XtraBars.Docking2010.Views.WindowsUI.ICommand<Document>

An ICommand executed when the current DocumentCheckAction is unchecked.

Remarks

Checking and unchecking a DocumentCheckAction object may trigger different actions. Use the DocumentCheckAction.CheckedCommand to get a command executed when the current DocumentCheckAction is checked. To perform the same actions on each DocumentCheckAction checked state change, use the DocumentCheckAction constructor overload that takes the toggle action as a parameter. See the How To: Create Custom Document Actions topic to learn more.

See Also