Class BasicFilter
The default filter associated with a sheet.
Implements
Inherited Members
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class BasicFilter : IDirectResponseSchema
Properties
Criteria
The criteria for showing/hiding values per column. The map's key is the column index, and the value is the criteria for that column. This field is deprecated in favor of filter_specs.
Declaration
[JsonProperty("criteria")]
public virtual IDictionary<string, FilterCriteria> Criteria { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, FilterCriteria> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FilterSpecs
The filter criteria per column. Both criteria and filter_specs are populated in responses. If both fields are specified in an update request, this field takes precedence.
Declaration
[JsonProperty("filterSpecs")]
public virtual IList<FilterSpec> FilterSpecs { get; set; }
Property Value
Type | Description |
---|---|
IList<FilterSpec> |
Range
The range the filter covers.
Declaration
[JsonProperty("range")]
public virtual GridRange Range { get; set; }
Property Value
Type | Description |
---|---|
GridRange |
SortSpecs
The sort order per column. Later specifications are used when values are equal in the earlier specifications.
Declaration
[JsonProperty("sortSpecs")]
public virtual IList<SortSpec> SortSpecs { get; set; }
Property Value
Type | Description |
---|---|
IList<SortSpec> |