pub struct SheetViewOptions {
pub show_gridlines: Option<bool>,
pub show_formulas: Option<bool>,
pub show_row_col_headers: Option<bool>,
pub zoom_scale: Option<u32>,
pub view_mode: Option<ViewMode>,
pub top_left_cell: Option<String>,
}Expand description
Options controlling the display of a sheet view.
Fields§
§show_gridlines: Option<bool>Whether gridlines are shown. Defaults to true.
show_formulas: Option<bool>Whether formulas are shown instead of their results. Defaults to false.
show_row_col_headers: Option<bool>Whether row and column headers are shown. Defaults to true.
zoom_scale: Option<u32>Zoom scale as a percentage (10-400). Defaults to 100.
view_mode: Option<ViewMode>The view mode (Normal, PageBreak, PageLayout).
top_left_cell: Option<String>The top-left cell visible in the view (e.g. “A1”).
Trait Implementations§
Source§impl Clone for SheetViewOptions
impl Clone for SheetViewOptions
Source§fn clone(&self) -> SheetViewOptions
fn clone(&self) -> SheetViewOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SheetViewOptions
impl Debug for SheetViewOptions
Source§impl Default for SheetViewOptions
impl Default for SheetViewOptions
Source§fn default() -> SheetViewOptions
fn default() -> SheetViewOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SheetViewOptions
impl RefUnwindSafe for SheetViewOptions
impl Send for SheetViewOptions
impl Sync for SheetViewOptions
impl Unpin for SheetViewOptions
impl UnwindSafe for SheetViewOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more