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 ICommandSuggestionProperties
Start
Gets the zero-based input position at which replacement begins.
int Start { get; }Property Value
Text
Gets the replacement text presented to the command source.
string Text { get; }Property Value
Tooltip
Gets optional descriptive text associated with the suggestion.
string? Tooltip { get; }