ExtendSelectionRect

Sets the end position of an edit selection.

Parameters
RowVal
The end row of the edit selection.
ColumnVal
The end column of the edit selection.
Returns
None.
Remarks
If there is no edit selection when this method is called, then the edit selection start position is set to row 1, column 1.
Example
set bzhao = CreateObject("BZWhll.WhllObj")
bzhao.Connect
bzhao.SetSelectionStartPos 2, 1
bzhao.ExtendSelectionRect 12, 80
bzhao.CopySelection
SelectedText = bzhao.GetClipboardText()