pub enum CharacterPathScope {
Undefined = 0,
InPresentationComponent = 1,
InDataComponent = 2,
}
Expand description
Valid parameter values to the function SCP
.
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 active line in the presentation component (the line that contains the active presentation position) is updated to correspond to the content of the active line in the data component (the line that contains the active data position) according to the newly established character path characteristics in the presentation component; the active data position is moved to the first character position in the active line in the data component, the active presentation position in the presentation component is updated accordingly.
InDataComponent = 2
The content of the active line in the data component (the line that contains the active data position) is updated to correspond to the content of the active line in the presentation component (the line that contains the active presentation position) according to the newly established character path characteristics of the presentation component; the active presentation position is moved to the first character position in the active line in the presentation component, the active data position in the data component is updated accordingly.
Trait Implementations§
source§impl Clone for CharacterPathScope
impl Clone for CharacterPathScope
source§fn clone(&self) -> CharacterPathScope
fn clone(&self) -> CharacterPathScope
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CharacterPathScope
impl PartialEq for CharacterPathScope
source§fn eq(&self, other: &CharacterPathScope) -> bool
fn eq(&self, other: &CharacterPathScope) -> bool
self
and other
values to be equal, and is used
by ==
.