class Google::Apis::DocsV1::UpdateTableColumnPropertiesRequest

Updates the TableColumnProperties of columns in a table.

Attributes

column_indices[RW]

The list of zero-based column indices whose property should be updated. If no indices are specified, all columns 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 `“width”`. Corresponds to the JSON property `fields` @return [String]

table_column_properties[RW]

The properties of a column in a table. Corresponds to the JSON property `tableColumnProperties` @return [Google::Apis::DocsV1::TableColumnProperties]

table_start_location[RW]

A particular location in the document. Corresponds to the JSON property `tableStartLocation` @return [Google::Apis::DocsV1::Location]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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