Class DimensionGroup
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.
Implements
Inherited Members
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class DimensionGroup : IDirectResponseSchema
Properties
Collapsed
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.
Declaration
[JsonProperty("collapsed")]
public virtual bool? Collapsed { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Depth
The depth of the group, representing how many groups have a range that wholly contains the range of this group.
Declaration
[JsonProperty("depth")]
public virtual int? Depth { get; set; }
Property Value
Type | Description |
---|---|
int? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Range
The range over which this group exists.
Declaration
[JsonProperty("range")]
public virtual DimensionRange Range { get; set; }
Property Value
Type | Description |
---|---|
DimensionRange |