class Google::Apis::SlidesV1::UpdateTableColumnPropertiesRequest

Updates the properties of a Table column.

Attributes

column_indices[RW]

The list of zero-based indices specifying which columns to update. If no indices are provided, all columns in the table will be updated. Corresponds to the JSON property `columnIndices` @return [Array<Fixnum>]

fields[RW]

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 ` “*”` can be used as short-hand for listing every field. For example to update the column width, set `fields` to `“column_width”`. 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). Corresponds to the JSON property `fields` @return [String]

object_id_prop[RW]

The object ID of the table. Corresponds to the JSON property `objectId` @return [String]

table_column_properties[RW]

Properties of each column in a table. Corresponds to the JSON property `tableColumnProperties` @return [Google::Apis::SlidesV1::TableColumnProperties]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 4935
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 4940
def update!(**args)
  @column_indices = args[:column_indices] if args.key?(:column_indices)
  @fields = args[:fields] if args.key?(:fields)
  @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop)
  @table_column_properties = args[:table_column_properties] if args.key?(:table_column_properties)
end