class Google::Apis::DocsV1::UpdateTableColumnPropertiesRequest
Updates the TableColumnProperties
of columns in a table.
Attributes
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>]
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]
The properties of a column in a table. Corresponds to the JSON property `tableColumnProperties` @return [Google::Apis::DocsV1::TableColumnProperties]
A particular location in the document. Corresponds to the JSON property `tableStartLocation` @return [Google::Apis::DocsV1::Location]
Public Class Methods
# File lib/google/apis/docs_v1/classes.rb, line 6163 def initialize(**args) update!(**args) end
Public Instance Methods
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