pub trait WText3DTrait: WText3DTraitConst + Widget3DTrait {
    fn as_raw_mut_WText3D(&mut self) -> *mut c_void;

    fn set_text(&mut self, text: &str) -> Result<()> { ... }
}

Required Methods

Provided Methods

Sets the text content of the widget.

Parameters
  • text: Text content of the widget.

Implementors