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

Command.UpdateUIState(ICommandUIState) Method

Updates the command state.

Namespace: DevExpress.Utils.Commands

Assembly: DevExpress.Data.v19.1.dll

Declaration

public virtual void UpdateUIState(
    ICommandUIState state
)

Parameters

Name Type Description
state ICommandUIState

An ICommandUIState interface defining the state of a command.

Remarks

Use the UpdateUIState method to update the command state created by the Command.CreateDefaultCommandUIState. Then, you can decide whether to perform the action and call the Command.ForceExecute method if required.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the UpdateUIState(ICommandUIState) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also