pub trait GuiBoxMethods<T: GuiVComponentMethods = Self>: GuiVComponentMethods<T> {
    // Provided methods
    fn char_height(&self) -> Result<i64> { ... }
    fn char_left(&self) -> Result<i64> { ... }
    fn char_top(&self) -> Result<i64> { ... }
    fn char_width(&self) -> Result<i64> { ... }
}
Expand description

A GuiBox is a simple frame with a name (also called a “Group Box”). The items inside the frame are not children of the box. The type prefix is “box”.

Provided Methods§

source

fn char_height(&self) -> Result<i64>

Height of the GuiBox in character metric.

source

fn char_left(&self) -> Result<i64>

Left coordinate of the GuiBox in character metric.

source

fn char_top(&self) -> Result<i64>

Top coordinate of the GuiBox in character metric.

source

fn char_width(&self) -> Result<i64>

Width of the GuiBox in character metric.

Implementors§