New to Telerik UI for WinFormsStart a free 30-day trial

Represents an async state command.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.WinControls.RadDiagram.dll

Syntax:

C#
public interface IAsyncStateCommand : ICommand

Derived Classes: AsyncStateCommandCompositeAsyncStateCommand

Inherited Members ICommand.Undo(object)ICommand.Redo()ICommand.Execute(object)ICommand.CanExecute(object)ICommand.Name

Properties

Gets a value indicating whether this instance is committed.

C#
bool IsCommited { get; }

Methods

Completes the execution.

C#
void Complete(bool commit, object state)
Parameters:commitbool

True, if the command should be committed.

stateobject

The state.

Events

Occurs when the command is completed.

C#
event EventHandler Completed