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

AppointmentFormEventArgs.CommandSourceType Property

Indicates the mechanism of the command input, e.g. keyboard, mouse, menu.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.2.dll

Declaration

public CommandSourceType CommandSourceType { get; }

Property Value

Type Description
CommandSourceType

A DevExpress.Utils.Commands.CommandSource enumeration member, specifying the command input method.

Available values:

Name Description
Unknown

The type of the command source is not known.

Menu

The command is issued from the menu.

Keyboard

The command is issued from the keyboard.

Mouse

The command is issued using a mouse.

Remarks

The CommandSourceType property provides information about the type of input used to issue a command. It allows you to differentiate between the command origins and adjust the settings for proper execution.

See Also