Show / Hide Table of Contents

Class UpdateTableRowPropertiesRequest

Updates the properties of a Table row.

Inheritance
System.Object
UpdateTableRowPropertiesRequest
Implements
Google.Apis.Requests.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.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class UpdateTableRowPropertiesRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Fields

The fields that should be updated. At least one field must be specified. The root tableRowProperties is implied and should not be specified. A single "*" can be used as short-hand for listing every field. For example to update the minimum row height, set fields to "min_row_height". If '"min_row_height"' is included in the field mask but the property is left unset, the minimum row height will default to 0.

Declaration
[JsonProperty("fields")]
public virtual object Fields { get; set; }
Property Value
Type Description
System.Object

ObjectId

The object ID of the table.

Declaration
[JsonProperty("objectId")]
public virtual string ObjectId { get; set; }
Property Value
Type Description
System.String

RowIndices

The list of zero-based indices specifying which rows to update. If no indices are provided, all rows in the table will be updated.

Declaration
[JsonProperty("rowIndices")]
public virtual IList<int?> RowIndices { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.Int32>>

TableRowProperties

The table row properties to update.

Declaration
[JsonProperty("tableRowProperties")]
public virtual TableRowProperties TableRowProperties { get; set; }
Property Value
Type Description
TableRowProperties

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top