Trait ITextBlockConcept
pub trait ITextBlockConcept: Inherits<Object> + Inherits<TextBlockConcept> {
// Provided methods
fn get_word_wrap(&self) -> Result<bool, Error> { ... }
fn set_word_wrap(&self, value: bool) -> Result<(), Error> { ... }
}Expand description
Base class for the Text Block nodes that you can use to show a small amount of text in your application.
This class defines the property types used by the Text Block nodes.
Provided Methods§
fn get_word_wrap(&self) -> Result<bool, Error>
fn get_word_wrap(&self) -> Result<bool, Error>
See: WORD_WRAP_PROPERTY
fn set_word_wrap(&self, value: bool) -> Result<(), Error>
fn set_word_wrap(&self, value: bool) -> Result<(), Error>
See: WORD_WRAP_PROPERTY
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.