pub struct ColumnViewRowBuilder { /* private fields */ }Available on crate feature
v4_12 only.Expand description
A builder-pattern type to construct ColumnViewRow objects.
Implementations§
Source§impl ColumnViewRowBuilder
impl ColumnViewRowBuilder
Sourcepub fn accessible_description(
self,
accessible_description: impl Into<GString>,
) -> Self
pub fn accessible_description( self, accessible_description: impl Into<GString>, ) -> Self
The accessible description to set on the row.
Sourcepub fn accessible_label(self, accessible_label: impl Into<GString>) -> Self
pub fn accessible_label(self, accessible_label: impl Into<GString>) -> Self
The accessible label to set on the row.
Sourcepub fn activatable(self, activatable: bool) -> Self
pub fn activatable(self, activatable: bool) -> Self
If the row can be activated by the user.
Sourcepub fn selectable(self, selectable: bool) -> Self
pub fn selectable(self, selectable: bool) -> Self
If the row can be selected by the user.
Sourcepub fn build(self) -> ColumnViewRow
pub fn build(self) -> ColumnViewRow
Build the ColumnViewRow.