Class GridHighlightConfig
Configuration data for the highlighting of Grid elements.
public sealed record GridHighlightConfig : IEquatable<GridHighlightConfig>
- Inheritance
-
GridHighlightConfig
- Implements
- Inherited Members
Constructors
GridHighlightConfig()
Configuration data for the highlighting of Grid elements.
public GridHighlightConfig()
Properties
AreaBorderColor
The named grid areas border color (Default: transparent).
public RGBA? AreaBorderColor { get; init; }
Property Value
CellBorderColor
The cell border color (default: transparent). Deprecated, please use rowLineColor and columnLineColor instead.
[Obsolete]
public RGBA? CellBorderColor { get; init; }
Property Value
CellBorderDash
Whether the cell border is dashed (default: false). Deprecated, please us rowLineDash and columnLineDash instead.
[Obsolete]
public bool? CellBorderDash { get; init; }
Property Value
- bool?
ColumnGapColor
The column gap highlight fill color (default: transparent).
public RGBA? ColumnGapColor { get; init; }
Property Value
ColumnHatchColor
The column gap hatching fill color (default: transparent).
public RGBA? ColumnHatchColor { get; init; }
Property Value
ColumnLineColor
The column line color (default: transparent).
public RGBA? ColumnLineColor { get; init; }
Property Value
ColumnLineDash
Whether column lines are dashed (default: false).
public bool? ColumnLineDash { get; init; }
Property Value
- bool?
GridBackgroundColor
The grid container background color (Default: transparent).
public RGBA? GridBackgroundColor { get; init; }
Property Value
GridBorderColor
The grid container border highlight color (default: transparent).
public RGBA? GridBorderColor { get; init; }
Property Value
GridBorderDash
Whether the grid border is dashed (default: false).
public bool? GridBorderDash { get; init; }
Property Value
- bool?
RowGapColor
The row gap highlight fill color (default: transparent).
public RGBA? RowGapColor { get; init; }
Property Value
RowHatchColor
The row gap hatching fill color (default: transparent).
public RGBA? RowHatchColor { get; init; }
Property Value
RowLineColor
The row line color (default: transparent).
public RGBA? RowLineColor { get; init; }
Property Value
RowLineDash
Whether row lines are dashed (default: false).
public bool? RowLineDash { get; init; }
Property Value
- bool?
ShowAreaNames
Show area name labels (default: false).
public bool? ShowAreaNames { get; init; }
Property Value
- bool?
ShowGridExtensionLines
Whether the extension lines from grid cells to the rulers should be shown (default: false).
public bool? ShowGridExtensionLines { get; init; }
Property Value
- bool?
ShowLineNames
Show line name labels (default: false).
public bool? ShowLineNames { get; init; }
Property Value
- bool?
ShowNegativeLineNumbers
Show Negative line number labels (default: false).
public bool? ShowNegativeLineNumbers { get; init; }
Property Value
- bool?
ShowPositiveLineNumbers
Show Positive line number labels (default: false).
public bool? ShowPositiveLineNumbers { get; init; }
Property Value
- bool?
ShowTrackSizes
Show track size labels (default: false).
public bool? ShowTrackSizes { get; init; }
Property Value
- bool?