Show / Hide Table of Contents

Class BasicFilter

The default filter associated with a sheet.

Inheritance
System.Object
BasicFilter
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 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
System.Collections.Generic.IDictionary<System.String, FilterCriteria>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.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
System.Collections.Generic.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
System.Collections.Generic.IList<SortSpec>

Implements

IDirectResponseSchema
In This Article
Back to top