Table of Contents

Class SourceRange

Namespace
Selenium.WebDriver.BiDi.Cdp.CSS
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Text range within a resource. All numbers are zero-based.

public sealed record SourceRange : IEquatable<SourceRange>
Inheritance
SourceRange
Implements
Inherited Members

Constructors

SourceRange(long, long, long, long)

Text range within a resource. All numbers are zero-based.

public SourceRange(long StartLine, long StartColumn, long EndLine, long EndColumn)

Parameters

StartLine long

Start line of range.

StartColumn long

Start column of range (inclusive).

EndLine long

End line of range

EndColumn long

End column of range (exclusive).

Properties

EndColumn

End column of range (exclusive).

public long EndColumn { get; init; }

Property Value

long

EndLine

End line of range

public long EndLine { get; init; }

Property Value

long

StartColumn

Start column of range (inclusive).

public long StartColumn { get; init; }

Property Value

long

StartLine

Start line of range.

public long StartLine { get; init; }

Property Value

long