CursorShape
Namespace: Hex1b
Assembly: Hex1b.dll
Specifies the shape of the terminal cursor.
csharp
public enum CursorShapeFields
BlinkingBar
Blinking bar cursor (│).
Returns: CursorShape
csharp
BlinkingBar = 5BlinkingBlock
Blinking block cursor (▓).
Returns: CursorShape
csharp
BlinkingBlock = 1BlinkingUnderline
Blinking underline cursor (_).
Returns: CursorShape
csharp
BlinkingUnderline = 3Default
Use the terminal's default cursor shape.
Returns: CursorShape
csharp
Default = 0SteadyBar
Steady bar cursor (│).
Returns: CursorShape
csharp
SteadyBar = 6SteadyBlock
Steady block cursor (█).
Returns: CursorShape
csharp
SteadyBlock = 2SteadyUnderline
Steady underline cursor (_).
Returns: CursorShape
csharp
SteadyUnderline = 4