Show / Hide Table of Contents

Class FindReplaceResponse

The result of the find/replace.

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

Properties

ETag

The ETag of the item.

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

FormulasChanged

The number of formula cells changed.

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

OccurrencesChanged

The number of occurrences (possibly multiple within a cell) changed. For example, if replacing &quot;e&quot; with &quot;o&quot; in &quot;Google Sheets&quot;, this would be &quot;3&quot; because &quot;Google Sheets&quot; -> &quot;Googlo Shoots&quot;.

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

RowsChanged

The number of rows changed.

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

SheetsChanged

The number of sheets changed.

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

ValuesChanged

The number of non-formula cells changed.

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

Implements

IDirectResponseSchema
Back to top