Class SourceRange
Text range within a resource. All numbers are zero-based.
public sealed class SourceRange
- Inheritance
-
SourceRange
- Inherited Members
Properties
EndColumn
End column of range (exclusive).
[JsonPropertyName("endColumn")]
public long EndColumn { get; set; }
Property Value
EndLine
End line of range
[JsonPropertyName("endLine")]
public long EndLine { get; set; }
Property Value
StartColumn
Start column of range (inclusive).
[JsonPropertyName("startColumn")]
public long StartColumn { get; set; }
Property Value
StartLine
Start line of range.
[JsonPropertyName("startLine")]
public long StartLine { get; set; }