Class FindReplaceResponse
The result of the find/replace.
Inheritance
System.Object
FindReplaceResponse
Implements
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 "e"
with
"o"
in "Google Sheets"
, this would be "3"
because "Google Sheets"
-> "Googlo Shoots"
.
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> |