Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Overlay.GridHighlightConfig

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.Overlay.GridHighlightConfig
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { GridHighlightConfig } = Protocol.Overlay;

Configuration data for the highlighting of Grid elements.

Properties

optional
showGridExtensionLines: boolean

Whether the extension lines from grid cells to the rulers should be shown (default: false).

optional
showPositiveLineNumbers: boolean

Show Positive line number labels (default: false).

optional
showNegativeLineNumbers: boolean

Show Negative line number labels (default: false).

optional
showAreaNames: boolean

Show area name labels (default: false).

optional
showLineNames: boolean

Show line name labels (default: false).

optional
showTrackSizes: boolean

Show track size labels (default: false).

optional
gridBorderColor: DOM.RGBA

The grid container border highlight color (default: transparent).

optional
cellBorderColor: DOM.RGBA

The cell border color (default: transparent). Deprecated, please use rowLineColor and columnLineColor instead.

optional
rowLineColor: DOM.RGBA

The row line color (default: transparent).

optional
columnLineColor: DOM.RGBA

The column line color (default: transparent).

optional
gridBorderDash: boolean

Whether the grid border is dashed (default: false).

optional
cellBorderDash: boolean

Whether the cell border is dashed (default: false). Deprecated, please us rowLineDash and columnLineDash instead.

optional
rowLineDash: boolean

Whether row lines are dashed (default: false).

optional
columnLineDash: boolean

Whether column lines are dashed (default: false).

optional
rowGapColor: DOM.RGBA

The row gap highlight fill color (default: transparent).

optional
rowHatchColor: DOM.RGBA

The row gap hatching fill color (default: transparent).

optional
columnGapColor: DOM.RGBA

The column gap highlight fill color (default: transparent).

optional
columnHatchColor: DOM.RGBA

The column gap hatching fill color (default: transparent).

optional
areaBorderColor: DOM.RGBA

The named grid areas border color (Default: transparent).

optional
gridBackgroundColor: DOM.RGBA

The grid container background color (Default: transparent).