Table of Contents

Delegate View.CommandImplementation

Namespace
Terminal.Gui
Assembly
Terminal.Gui.dll

Function signature commands.

public delegate bool? View.CommandImplementation(CommandContext ctx)

Parameters

ctx CommandContext

Provides information about the circumstances of invoking the command (e.g. Key)

Returns

bool?

null if no command was found; input proessing should continue. false if the command was invoked and was not handled (or cancelled); input proessing should continue. true if the command was invoked the command was handled (or cancelled); input proessing should stop.