pl.wendigo.chrome.api.css / SourceRange

SourceRange

data class SourceRange (source)

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

Link
CSS#SourceRange type documentation.

Constructors

<init>

SourceRange(startLine: Int, startColumn: Int, endLine: Int, endColumn: Int)

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

Properties

endColumn

val endColumn: Int

End column of range (exclusive).

endLine

val endLine: Int

End line of range

startColumn

val startColumn: Int

Start column of range (inclusive).

startLine

val startLine: Int

Start line of range.