Skip to content

XUICESelectedColumns

Description

Represents the start and end columns contained by a text selection within the code editor.

Properties

Name Type Read-Only
Finish Integer
SelectionBeginsBeforeLine Boolean
SelectionEndsAfterLine Boolean
Start Integer

Methods

Name Parameters Returns
Constructor selectionBeginsBeforeLine As Boolean, start As Integer, selectionEndsAfterLine As Boolean, finish As Integer

Property Descriptions

Finish As Integer

The last (0-based) column that is selected on the line. Will be -1 if the selection ends beyond the line.


SelectionBeginsBeforeLine As Boolean

True if the selection enveloping this line begins before this line.


SelectionEndsAfterLine As Boolean

True if the selection enveloping this line ends after this line.


Start As Integer

The first (0-based) column that is selected on the line.


Method Descriptions

Constructor(selectionBeginsBeforeLine As Boolean, start As Integer, selectionEndsAfterLine As Boolean, finish As Integer)

Default constructor.

  • selectionBeginsBeforeLine is True if the text selection begins above the line.
  • start is the 0-based column that is selected on the line.
  • selectionEndsAfterLine is True if the selection ends after this line.
  • finish is the last (0-based) column that is selected on the line. Will be -1 if the selection ends beyond the line.