Struct relm4::factory::positions::GridPosition
source · pub struct GridPosition {
pub column: i32,
pub row: i32,
pub width: i32,
pub height: i32,
}
Expand description
Storing information about where new widgets can be placed
inside a gtk::Grid
.
Fields§
§column: i32
The number of the column.
row: i32
The number of the row.
width: i32
The amount of columns the widget should take.
height: i32
The amount of rows the widget should take.