pub struct DimensionGroup {
pub collapsed: Option<bool>,
pub depth: Option<i32>,
pub range: Option<DimensionRange>,
}Expand description
A group over an interval of rows or columns on a sheet, which can contain or be contained within other groups. A group can be collapsed or expanded as a unit on the sheet.
This type is not used in any activity, and only used as part of another schema.
Fields§
§collapsed: Option<bool>This field is true if this group is collapsed. A collapsed group remains collapsed if an overlapping group at a shallower depth is expanded. A true value does not imply that all dimensions within the group are hidden, since a dimension’s visibility can change independently from this group property. However, when this property is updated, all dimensions within it are set to hidden if this field is true, or set to visible if this field is false.
depth: Option<i32>The depth of the group, representing how many groups have a range that wholly contains the range of this group.
range: Option<DimensionRange>The range over which this group exists.
Trait Implementations§
Source§impl Clone for DimensionGroup
impl Clone for DimensionGroup
Source§fn clone(&self) -> DimensionGroup
fn clone(&self) -> DimensionGroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more