Menu item command.

Namespace:  DayPilot.Web.Ui
Assembly:  DayPilot (in DayPilot.dll) Version: 5.8.1956.0 (5.8.1956.0)

Syntax

C#
public string Command { get; set; }
Visual Basic (Declaration)
Public Property Command As String
Visual C++
public:
property String^ Command {
	String^ get ();
	void set (String^ value);
}

Remarks

When MenuItem.Action is set to MenuItemAction.CallBack or MenuItemAction.PostBack the command is passed to DayPilotCalendar.EventMenuClick event.
When MenuItem.Action is set to MenuItemAction.JavaScript it is passed to the JavaScript event handler.

The typical commands will be "Delete" or "Open".

See Also