Class UpdateTableRowPropertiesRequest
Updates the properties of a Table row.
Implements
Inherited Members
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 |
---|---|
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 |
---|---|
object |
ObjectId
The object ID of the table.
Declaration
[JsonProperty("objectId")]
public virtual string ObjectId { get; set; }
Property Value
Type | Description |
---|---|
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 |
---|---|
IList<int?> |
TableRowProperties
The table row properties to update.
Declaration
[JsonProperty("tableRowProperties")]
public virtual TableRowProperties TableRowProperties { get; set; }
Property Value
Type | Description |
---|---|
TableRowProperties |