Show / Hide Table of Contents

Class FindReplaceResponse

The result of the find/replace.

Inheritance
System.Object
FindReplaceResponse
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 FindReplaceResponse : 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
[JsonProperty("formulasChanged")]
public virtual 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; -&gt; &quot;Googlo Shoots&quot;.

Declaration
[JsonProperty("occurrencesChanged")]
public virtual int? OccurrencesChanged { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

RowsChanged

The number of rows changed.

Declaration
[JsonProperty("rowsChanged")]
public virtual int? RowsChanged { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

SheetsChanged

The number of sheets changed.

Declaration
[JsonProperty("sheetsChanged")]
public virtual int? SheetsChanged { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ValuesChanged

The number of non-formula cells changed.

Declaration
[JsonProperty("valuesChanged")]
public virtual int? ValuesChanged { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top