TextSpan Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines a span of text based on character and line index.
public value class TextSpan
public value class TextSpan
struct TextSpan
public struct TextSpan
type TextSpan = struct
Public Structure TextSpan
- Inheritance
-
TextSpan
Remarks
Use this structure to define a span of text in terms of a beginning and an ending line and character index.
Fields
iEndIndex |
Ending character index within the line. This value must be less than or equal to the length of the line. |
iEndLine |
Ending line index. |
iStartIndex |
Starting character index within the line. This value must be less than or equal to the length of line. |
iStartLine |
Starting line index. |