Skip to main content

Interface IReadOnlyCommandInfo

Interface representing a registered command.

Assembly: Dalamud.dll
Declaration
public interface IReadOnlyCommandInfo

Properties

Handler

Gets a Dalamud.Game.Command.IReadOnlyCommandInfo.HandlerDelegate which will be called when the command is dispatched.

Declaration
IReadOnlyCommandInfo.HandlerDelegate Handler { get; }

HelpMessage

Gets the help message for this command.

Declaration
string HelpMessage { get; }

ShowInHelp

Gets a value indicating whether if this command should be shown in the help output.

Declaration
bool ShowInHelp { get; }

DisplayOrder

Gets the display order of this command. Defaults to alphabetical ordering.

Declaration
int DisplayOrder { get; }