ITextSpan Interface

Contains properties that are used to obtain information about a span of text.

Namespace:  Microsoft.SqlServer.Management.QueryExecution
Assembly:  SqlWorkbench.Interfaces (in SqlWorkbench.Interfaces.dll)

Syntax

'Declaration
Public Interface ITextSpan
'Usage
Dim instance As ITextSpan
public interface ITextSpan
public interface class ITextSpan
type ITextSpan =  interface end
public interface ITextSpan

The ITextSpan type exposes the following members.

Properties

  Name Description
Public property AnchorCol Gets the column number on which text selection starts.
Public property AnchorLine Gets the line number on which text selection starts.
Public property EndCol Gets the column number on which text selection ends.
Public property EndLine Gets the line number on which text selection ends.
Public property LineWithinTextSpan Gets a line of text within the text span.
Public property Text Gets the text associated with the ITextSpan interface.
Public property TextView Gets the TextView control that is associated with ITextSpan.

Top