Skip to content

CopyModeState

Namespace: Hex1b

Assembly: Hex1b.dll

Represents the current state of copy mode on a terminal widget.

csharp
public enum CopyModeState

Fields

Active

Copy mode is active but no selection has been started.

Returns: CopyModeState

csharp
Active = 1

BlockSelection

Copy mode is active with block/rectangular selection.

Returns: CopyModeState

csharp
BlockSelection = 4

CharacterSelection

Copy mode is active with character-level selection.

Returns: CopyModeState

csharp
CharacterSelection = 2

Inactive

Copy mode is not active.

Returns: CopyModeState

csharp
Inactive = 0

LineSelection

Copy mode is active with line-level selection.

Returns: CopyModeState

csharp
LineSelection = 3

Released under the MIT License.