| |||
| Home > RealView Debugger Commands > Alphabetical command reference > VSETC | |||
Positions the cursor in the specified user-defined window.
VSETC windowid ,row ,column
where:
windowidIdentifies the window that is to have its cursor
positioned. This must be a user-defined .windowid
rowSpecifies the row number in the window, counting from 0, the number of the top row.
columnSpecifies the column number in the window, counting from 0, the number of the leftmost column.
The VSETC command positions the cursor in the specified user-defined window. This defines where the next output to be directed to that window appears.
The following example shows how to use VSETC:
vsetc 50,2,5 fprintf 50,"Status: %d", status
Write Status: to window 50, starting from
the third column of the sixth row.