pub enum PrintCentering {
None,
Horizontal,
Vertical,
Both,
}Expand description
20.363 style:table-centering
The style:table-centering attribute specifies whether tables are centered horizontally and/ or vertically on the page. This attribute only applies to spreadsheet documents.
The default is to align the table to the top-left or top-right corner of the page, depending of its writing direction.
The defined values for the style:table-centering attribute are:
- both: tables should be centered both horizontally and vertically on the pages where they appear.
- horizontal: tables should be centered horizontally on the pages where they appear.
- none: tables should not be centered both horizontally or vertically on the pages where they appear.
- vertical: tables should be centered vertically on the pages where they appear.
Variants§
Trait Implementations§
Source§impl Clone for PrintCentering
impl Clone for PrintCentering
Source§fn clone(&self) -> PrintCentering
fn clone(&self) -> PrintCentering
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 PrintCentering
impl Debug for PrintCentering
Source§impl Display for PrintCentering
impl Display for PrintCentering
Source§impl PartialEq for PrintCentering
impl PartialEq for PrintCentering
impl Copy for PrintCentering
impl Eq for PrintCentering
impl StructuralPartialEq for PrintCentering
Auto Trait Implementations§
impl Freeze for PrintCentering
impl RefUnwindSafe for PrintCentering
impl Send for PrintCentering
impl Sync for PrintCentering
impl Unpin for PrintCentering
impl UnsafeUnpin for PrintCentering
impl UnwindSafe for PrintCentering
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.