Skip to main content

ToggleListCommandBase.ForceExecute(ICommandUIState) Method

Forces the application user interface to ignore the current applicability of a command, and trigger its execution despite the risks.

Namespace: DevExpress.XtraRichEdit.Commands

Assembly: DevExpress.RichEdit.v23.2.Core.dll

NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation

Declaration

public override void ForceExecute(
    ICommandUIState state
)

Parameters

Name Type Description
state ICommandUIState

An object implementing the ICommandUIState interface that defines the current status of a command in the overall context of the application user interface.

Remarks

Call the ForceExecute method to unconditionally trigger a command’s execution.

To avoid arbitrary execution of commands, use the Command.Execute method that automatically evaluates whether or not the command is applicable in the current context of the application user interface.

See Also