Show / Hide Table of Contents

Class PivotGroupSortValueBucket

Information about which values in a pivot group should be used for sorting.

Inheritance
System.Object
PivotGroupSortValueBucket
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class PivotGroupSortValueBucket : IDirectResponseSchema

Properties

Buckets

Determines the bucket from which values are chosen to sort. For example, in a pivot table with one row group & two column groups, the row group can list up to two values. The first value corresponds to a value within the first column group, and the second value corresponds to a value in the second column group. If no values are listed, this would indicate that the row should be sorted according to the "Grand Total" over the column groups. If a single value is listed, this would correspond to using the "Total" of that bucket.

Declaration
[JsonProperty("buckets")]
public virtual IList<ExtendedValue> Buckets { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ExtendedValue>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ValuesIndex

The offset in the PivotTable.values list which the values in this grouping should be sorted by.

Declaration
[JsonProperty("valuesIndex")]
public virtual int? ValuesIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top