Skip to content

About Options

@EaE edited this page Feb 8, 2021 · 1 revision

Index


SelectableMenuOptions

Namespace: CommandLineSelectableMenu
Assembly: CommandLineSelectableMenu.dll

Properties

* SelectedType

Select either ArrowSelectedType or ColorSelectedType.
ArrowSelectedType will be a selection menu with arrows.
ColorSelectedType will be a selection menu with no arrows.

* IsClearAfterSelection

Set to true if you want to clear the menu after selecting an item.
The default value is false.


ArrowSelectedType

Namespace: CommandLineSelectableMenu
Assembly: CommandLineSelectableMenu.dll

ArrowSelectedType will be a selection menu with arrows.

Properties

* BaseColor

Sets the text color of non-selected items. Default value is Console.ForegroundColor.

* SelectedColor

Sets the text color of selected items. Default value is Console.ForegroundColor.

* ArrowType

Arrow (>), Asterisk (*), Plus (+).You can select your favorite cursor from three candidates.


ColorSelectedType

Namespace: CommandLineSelectableMenu
Assembly: CommandLineSelectableMenu.dll

ColorSelectedType will be a selection menu with no arrows.

Properties

* BaseColor

Sets the text color of non-selected items. Default value is Console.ForegroundColor.

* SelectedColor

Sets the text color of selected items. Default value is ConsoleColor.Yellow.