Table of Contents

CliAnsiWriter.CursorPosition Method

Definition

Namespace
DotMake.CommandLine
Assembly
DotMake.CommandLine.dll

This control function moves the cursor to the specified line and column (1-indexed) by emitting CSI row;column H.

public CliAnsiWriter CursorPosition(int row, int column)

Parameters

row int

The row.

column int

The column.

Returns

CliAnsiWriter

The same instance so that multiple calls can be chained.

Remarks