pub struct TablePositionProperty {
pub left_from_text: Option<i32>,
pub right_from_text: Option<i32>,
pub vertical_anchor: Option<String>,
pub horizontal_anchor: Option<String>,
pub position_x_alignment: Option<String>,
pub position_y_alignment: Option<String>,
pub position_x: Option<i32>,
pub position_y: Option<i32>,
}
Expand description
https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.wordprocessing.tablepositionproperties?view=openxml-3.0.1
Fields§
§left_from_text: Option<i32>
§right_from_text: Option<i32>
§vertical_anchor: Option<String>
§horizontal_anchor: Option<String>
§position_x_alignment: Option<String>
§position_y_alignment: Option<String>
§position_x: Option<i32>
§position_y: Option<i32>
Implementations§
Source§impl TablePositionProperty
impl TablePositionProperty
pub fn new() -> TablePositionProperty
pub fn left_from_text(self, v: i32) -> Self
pub fn right_from_text(self, v: i32) -> Self
pub fn vertical_anchor(self, v: impl Into<String>) -> Self
pub fn horizontal_anchor(self, v: impl Into<String>) -> Self
pub fn position_x_alignment(self, v: impl Into<String>) -> Self
pub fn position_y_alignment(self, v: impl Into<String>) -> Self
pub fn position_x(self, v: i32) -> Self
pub fn position_y(self, v: i32) -> Self
Trait Implementations§
Source§impl Clone for TablePositionProperty
impl Clone for TablePositionProperty
Source§fn clone(&self) -> TablePositionProperty
fn clone(&self) -> TablePositionProperty
Returns a copy 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 TablePositionProperty
impl Debug for TablePositionProperty
Source§impl Default for TablePositionProperty
impl Default for TablePositionProperty
Source§fn default() -> TablePositionProperty
fn default() -> TablePositionProperty
Returns the “default value” for a type. Read more
Source§impl ElementReader for TablePositionProperty
impl ElementReader for TablePositionProperty
fn read<R: Read>( _r: &mut EventReader<R>, attrs: &[OwnedAttribute], ) -> Result<Self, ReaderError>
Source§impl PartialEq for TablePositionProperty
impl PartialEq for TablePositionProperty
Source§impl Serialize for TablePositionProperty
impl Serialize for TablePositionProperty
impl StructuralPartialEq for TablePositionProperty
Auto Trait Implementations§
impl Freeze for TablePositionProperty
impl RefUnwindSafe for TablePositionProperty
impl Send for TablePositionProperty
impl Sync for TablePositionProperty
impl Unpin for TablePositionProperty
impl UnwindSafe for TablePositionProperty
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