Function setCursorPosition [src]
Sets the current coordinates of the cursor position.
Prototype
pub fn setCursorPosition(self: *const SimpleTextOutput, column: usize, row: usize) Status
Parameters
self: *const SimpleTextOutput
column: usize
row: usize
Source
pub fn setCursorPosition(self: *const SimpleTextOutput, column: usize, row: usize) Status {
return self._set_cursor_position(self, column, row);
}