Show / Hide Table of Contents

Class FilterView

A filter view.

Inheritance
System.Object
FilterView
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class FilterView : object, 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.

Declaration
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

FilterViewId

The ID of the filter view.

Declaration
public virtual Nullable<int> FilterViewId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

NamedRangeId

The named range this filter view is backed by, if any.

When writing, only one of range or named_range_id may be set.

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

Range

The range this filter view covers.

When writing, only one of range or named_range_id may be set.

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

Title

The name of the filter view.

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

Implements

IDirectResponseSchema
Back to top