Show / Hide Table of Contents

Class UpdateTableColumnPropertiesRequest

Updates the properties of a Table column.

Inheritance
System.Object
UpdateTableColumnPropertiesRequest
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 UpdateTableColumnPropertiesRequest : IDirectResponseSchema

Properties

ColumnIndices

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

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

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 tableColumnProperties is implied and should not be specified. A single &quot;*&quot; can be used as short-hand for listing every field. For example to update the column width, set fields to &quot;column_width&quot;. If '"column_width"' is included in the field mask but the property is left unset, the column width will default to 406,400 EMU (32 points).

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

TableColumnProperties

The table column properties to update. If the value of table_column_properties#column_width in the request is less than 406,400 EMU (32 points), a 400 bad request error is returned.

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

Implements

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