pub struct GridHighlightConfig { /* private fields */ }experimental and Overlay and DOM and Page and Runtime only.Expand description
Configuration data for the highlighting of Grid elements.
Implementations§
Source§impl GridHighlightConfig
impl GridHighlightConfig
pub fn builder() -> GridHighlightConfigBuilder
Sourcepub fn show_grid_extension_lines(&self) -> Option<&bool>
pub fn show_grid_extension_lines(&self) -> Option<&bool>
Whether the extension lines from grid cells to the rulers should be shown (default: false).
Sourcepub fn show_positive_line_numbers(&self) -> Option<&bool>
pub fn show_positive_line_numbers(&self) -> Option<&bool>
Show Positive line number labels (default: false).
Sourcepub fn show_negative_line_numbers(&self) -> Option<&bool>
pub fn show_negative_line_numbers(&self) -> Option<&bool>
Show Negative line number labels (default: false).
Sourcepub fn show_area_names(&self) -> Option<&bool>
pub fn show_area_names(&self) -> Option<&bool>
Show area name labels (default: false).
Sourcepub fn show_line_names(&self) -> Option<&bool>
pub fn show_line_names(&self) -> Option<&bool>
Show line name labels (default: false).
Sourcepub fn show_track_sizes(&self) -> Option<&bool>
pub fn show_track_sizes(&self) -> Option<&bool>
Show track size labels (default: false).
Sourcepub fn grid_border_color(&self) -> Option<&Rgba>
pub fn grid_border_color(&self) -> Option<&Rgba>
The grid container border highlight color (default: transparent).
Sourcepub fn cell_border_color(&self) -> Option<&Rgba>
👎Deprecated
pub fn cell_border_color(&self) -> Option<&Rgba>
The cell border color (default: transparent). Deprecated, please use rowLineColor and columnLineColor instead.
Sourcepub fn row_line_color(&self) -> Option<&Rgba>
pub fn row_line_color(&self) -> Option<&Rgba>
The row line color (default: transparent).
Sourcepub fn column_line_color(&self) -> Option<&Rgba>
pub fn column_line_color(&self) -> Option<&Rgba>
The column line color (default: transparent).
Sourcepub fn grid_border_dash(&self) -> Option<&bool>
pub fn grid_border_dash(&self) -> Option<&bool>
Whether the grid border is dashed (default: false).
Sourcepub fn cell_border_dash(&self) -> Option<&bool>
👎Deprecated
pub fn cell_border_dash(&self) -> Option<&bool>
Whether the cell border is dashed (default: false). Deprecated, please us rowLineDash and columnLineDash instead.
Sourcepub fn row_line_dash(&self) -> Option<&bool>
pub fn row_line_dash(&self) -> Option<&bool>
Whether row lines are dashed (default: false).
Sourcepub fn column_line_dash(&self) -> Option<&bool>
pub fn column_line_dash(&self) -> Option<&bool>
Whether column lines are dashed (default: false).
Sourcepub fn row_gap_color(&self) -> Option<&Rgba>
pub fn row_gap_color(&self) -> Option<&Rgba>
The row gap highlight fill color (default: transparent).
Sourcepub fn row_hatch_color(&self) -> Option<&Rgba>
pub fn row_hatch_color(&self) -> Option<&Rgba>
The row gap hatching fill color (default: transparent).
Sourcepub fn column_gap_color(&self) -> Option<&Rgba>
pub fn column_gap_color(&self) -> Option<&Rgba>
The column gap highlight fill color (default: transparent).
Sourcepub fn column_hatch_color(&self) -> Option<&Rgba>
pub fn column_hatch_color(&self) -> Option<&Rgba>
The column gap hatching fill color (default: transparent).
Sourcepub fn area_border_color(&self) -> Option<&Rgba>
pub fn area_border_color(&self) -> Option<&Rgba>
The named grid areas border color (Default: transparent).
Sourcepub fn grid_background_color(&self) -> Option<&Rgba>
pub fn grid_background_color(&self) -> Option<&Rgba>
The grid container background color (Default: transparent).
Trait Implementations§
Source§impl Clone for GridHighlightConfig
impl Clone for GridHighlightConfig
Source§fn clone(&self) -> GridHighlightConfig
fn clone(&self) -> GridHighlightConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more