class Google::Apis::DocsV1::UpdateTableRowStyleRequest
Updates the TableRowStyle
of rows in a table.
Attributes
The fields that should be updated. At least one field must be specified. The root `tableRowStyle` 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”`. Corresponds to the JSON property `fields` @return [String]
The list of zero-based row indices whose style should be updated. If no indices are specified, all rows will be updated. Corresponds to the JSON property `rowIndices` @return [Array<Fixnum>]
Styles that apply to a table row. Corresponds to the JSON property `tableRowStyle` @return [Google::Apis::DocsV1::TableRowStyle]
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 6204 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/docs_v1/classes.rb, line 6209 def update!(**args) @fields = args[:fields] if args.key?(:fields) @row_indices = args[:row_indices] if args.key?(:row_indices) @table_row_style = args[:table_row_style] if args.key?(:table_row_style) @table_start_location = args[:table_start_location] if args.key?(:table_start_location) end