pub enum PresentationDirectionScope {
Undefined = 0,
InPresentationComponent = 1,
InDataComponent = 2,
}
Expand description
Valid parameter values to the function SPD
.
Variants§
Undefined = 0
Undefined, implementation specific.
Note
This may also permit the effect to take place after the next occurrence of CR
,
NEL
or any control function which initiates an absolute movement of the active presentation
position or the active data position.
InPresentationComponent = 1
The content of the presentation component is updated to correspond to the content of the data component according to the newly established characteristics of the presentation component; the active data position is moved to the first character position in the first line in the data component, the active presentation position in the presentation component is updated accordingly.
InDataComponent = 2
The content of the data component is updated to correspond to the content of the presentation component according to the newly established characteristics of the presentation component; the active presentation position is moved to the first character position in the first line in the presentation component, the active data position in the data component is updated accordingly.
Trait Implementations§
source§impl Clone for PresentationDirectionScope
impl Clone for PresentationDirectionScope
source§fn clone(&self) -> PresentationDirectionScope
fn clone(&self) -> PresentationDirectionScope
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for PresentationDirectionScope
impl Default for PresentationDirectionScope
source§fn default() -> PresentationDirectionScope
fn default() -> PresentationDirectionScope
source§impl PartialEq for PresentationDirectionScope
impl PartialEq for PresentationDirectionScope
source§fn eq(&self, other: &PresentationDirectionScope) -> bool
fn eq(&self, other: &PresentationDirectionScope) -> bool
self
and other
values to be equal, and is used
by ==
.