Show / Hide Table of Contents

Class AutoFillRequest

Fills in more data based on existing data.

Inheritance
System.Object
AutoFillRequest
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class AutoFillRequest : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Range

The range to autofill. This will examine the range and detect the location that has data and automatically fill that data in to the rest of the range.

Declaration
public virtual GridRange Range { get; set; }
Property Value
Type Description
GridRange

SourceAndDestination

The source and destination areas to autofill. This explicitly lists the source of the autofill and where to extend that data.

Declaration
public virtual SourceAndDestination SourceAndDestination { get; set; }
Property Value
Type Description
SourceAndDestination

UseAlternateSeries

True if we should generate data with the "alternate" series. This differs based on the type and amount of source data.

Declaration
public virtual Nullable<bool> UseAlternateSeries { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
Back to top