ExtendSelection

Selects all the text between the current edit selection start position and the row, column parameters.

Parameters
RowVal
Row end position
ColumnVal
Column end position
Returns
None.
Remarks
This method is Base-0 for VT/6530 sessions and Base-1 for all other session types. If there is no edit selection when this method is called, then the edit selection start position is set to row 0, column 0 for VT/6530 sessions and row 1, column 1 for all other session types.
Example
Set bzhao = CreateObject("BZWhll.WhllObj")
bzhao.Connect
bzhao.SetSelectionStartPos 2, 1
bzhao.ExtendSelection 12, 80
bzhao.CopySelection
SelectedText = bzhao.GetClipboardText()