Skip to content

Interface ICommandSuggestion

Namespace: Void.Proxy.Api.Commands
Assembly: Void.Proxy.Api.dll

Describes a completion that can replace part of a command input.

public interface ICommandSuggestion

Properties

Start

Gets the zero-based input position at which replacement begins.

int Start { get; }

Property Value

int

Text

Gets the replacement text presented to the command source.

string Text { get; }

Property Value

string

Tooltip

Gets optional descriptive text associated with the suggestion.

string? Tooltip { get; }

Property Value

string?