pub enum PresentationDirection {
HorizontalLinesTopToBottomLeftToRight = 0,
VerticalLinesRightToLeftTopToBottom = 1,
VerticalLinesLeftToRightTopToBottom = 2,
HorizontalLinesTopToBottomRightToLeft = 3,
VerticalLinesLeftToRightBottomToTop = 4,
HorizontalLinesBottomToTopRightToLeft = 5,
HorizontalLinesBottomToTopLefToRight = 6,
VerticalLinesRightToLeftBottomToTop = 7,
}
Expand description
Valid parameter values to the function SPD
.
Variants§
HorizontalLinesTopToBottomLeftToRight = 0
Horizontal line orientation, top-to-bottom line progression, left-to-right character path.
VerticalLinesRightToLeftTopToBottom = 1
Vertical line orientation, right-to-left line progression, top-to-bottom character path.
VerticalLinesLeftToRightTopToBottom = 2
Vertical line orientation, left-to-right line progression, top-to-bottom character path.
HorizontalLinesTopToBottomRightToLeft = 3
Horizontal line orientation, top-to-bottom line progression, right-to-left character path.
VerticalLinesLeftToRightBottomToTop = 4
Vertical line orientation, left-to-right line progression, bottom-to-top character path.
HorizontalLinesBottomToTopRightToLeft = 5
Horizontal line orientation, bottom-to-top line progression, right-to-left character path.
HorizontalLinesBottomToTopLefToRight = 6
Horizontal line orientation, bottom-to-top line progression, left-to-right character path.
VerticalLinesRightToLeftBottomToTop = 7
Vertical line orientation, right to left line progression, bottom-to-top character path.
Trait Implementations§
source§impl Clone for PresentationDirection
impl Clone for PresentationDirection
source§fn clone(&self) -> PresentationDirection
fn clone(&self) -> PresentationDirection
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for PresentationDirection
impl Default for PresentationDirection
source§fn default() -> PresentationDirection
fn default() -> PresentationDirection
source§impl PartialEq for PresentationDirection
impl PartialEq for PresentationDirection
source§fn eq(&self, other: &PresentationDirection) -> bool
fn eq(&self, other: &PresentationDirection) -> bool
self
and other
values to be equal, and is used
by ==
.