world.GetSelectionStartColumn
Returns the starting column of the selection in the output window
Prototype
long GetSelectionStartColumn();
Description
Returns the first column of the selected text in the output window (starting at 1).
If no selection, returns zero.
If you want to the current selection in the *command* window, use GetInfo(236) (first character) and GetInfo(237) (last character) instead.
VBscript example
world.note world.GetSelectionStartColumn
Jscript example
world.note (world.GetSelectionStartColumn ());
PerlScript example
$world->note ($world->GetSelectionStartColumn ());
Python example
world.note (world.GetSelectionStartColumn )
Lua example
Note (GetSelectionStartColumn ())
Return value
The number of the first column in the selection, or zero if no selection.
The first column is 1.
Related topic
See also
| Function | Description |
|---|---|
| GetLineInfo | Gets details about a specified line in the output window |
| GetLinesInBufferCount | Returns the number of lines in the output window |
| GetSelectionEndColumn | Returns the endling column of the selection in the output window |
| GetSelectionEndLine | Returns the last line of the selection in the output window |
| GetStyleInfo | Gets details about a specified style run for a specified line in the output window |
| SetSelection | Sets a selection range in the output window |