world.GetSelectionEndColumn

MUSHclient script function (Method) — introduced in version 3.18

Returns the endling column of the selection in the output window

Prototype

long GetSelectionEndColumn();

Data type meanings

Description

Returns the last 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.GetSelectionEndColumn

Jscript example

world.note (world.GetSelectionEndColumn ());

PerlScript example

$world->note ($world->GetSelectionEndColumn ());

Python example

world.note (world.GetSelectionEndColumn )

Lua example

Note (GetSelectionEndColumn ())

Return value

The number of the last column in the selection, or zero if no selection.
The first column is 1.

Related topic

Information

See also

FunctionDescription
GetLineInfoGets details about a specified line in the output window
GetLinesInBufferCountReturns the number of lines in the output window
GetSelectionEndLineReturns the last line of the selection in the output window
GetSelectionStartColumnReturns the starting column of the selection in the output window
GetSelectionStartLineReturns the starting line of the selection in the output window
GetStyleInfoGets details about a specified style run for a specified line in the output window
SetSelectionSets a selection range in the output window