Show / Hide Table of Contents

Class AddSlicerRequest

Adds a slicer to a sheet in the spreadsheet.

Inheritance
System.Object
AddSlicerRequest
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 AddSlicerRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Slicer

The slicer that should be added to the spreadsheet, including the position where it should be placed. The slicerId field is optional; if one is not set, an id will be randomly generated. (It is an error to specify the ID of a slicer that already exists.)

Declaration
[JsonProperty("slicer")]
public virtual Slicer Slicer { get; set; }
Property Value
Type Description
Slicer

Implements

IDirectResponseSchema
In This Article
Back to top