Show / Hide Table of Contents

Class IterativeCalculationSettings

Settings to control how circular dependencies are resolved with iterative calculation.

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

Properties

ConvergenceThreshold

When iterative calculation is enabled and successive results differ by less than this threshold value, the calculation rounds stop.

Declaration
public virtual Nullable<double> ConvergenceThreshold { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ETag

The ETag of the item.

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

MaxIterations

When iterative calculation is enabled, the maximum number of calculation rounds to perform.

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

Implements

IDirectResponseSchema
Back to top