Class: Google::Apis::SlidesV1::UpdateTableColumnPropertiesRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SlidesV1::UpdateTableColumnPropertiesRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/slides_v1/classes.rb,
 generated/google/apis/slides_v1/representations.rb,
 generated/google/apis/slides_v1/representations.rb
Overview
Updates the properties of a Table column.
Instance Attribute Summary collapse
- 
  
    
      #column_indices  ⇒ Array<Fixnum> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of zero-based indices specifying which columns to update. 
- 
  
    
      #fields  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The fields that should be updated. 
- 
  
    
      #object_id_prop  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The object ID of the table. 
- 
  
    
      #table_column_properties  ⇒ Google::Apis::SlidesV1::TableColumnProperties 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Properties of each column in a table. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UpdateTableColumnPropertiesRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UpdateTableColumnPropertiesRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateTableColumnPropertiesRequest
Returns a new instance of UpdateTableColumnPropertiesRequest
| 4878 4879 4880 | # File 'generated/google/apis/slides_v1/classes.rb', line 4878 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#column_indices ⇒ Array<Fixnum>
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
| 4855 4856 4857 | # File 'generated/google/apis/slides_v1/classes.rb', line 4855 def column_indices @column_indices end | 
#fields ⇒ String
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
| 4866 4867 4868 | # File 'generated/google/apis/slides_v1/classes.rb', line 4866 def fields @fields end | 
#object_id_prop ⇒ String
The object ID of the table.
Corresponds to the JSON property objectId
| 4871 4872 4873 | # File 'generated/google/apis/slides_v1/classes.rb', line 4871 def object_id_prop @object_id_prop end | 
#table_column_properties ⇒ Google::Apis::SlidesV1::TableColumnProperties
Properties of each column in a table.
Corresponds to the JSON property tableColumnProperties
| 4876 4877 4878 | # File 'generated/google/apis/slides_v1/classes.rb', line 4876 def table_column_properties @table_column_properties end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4883 4884 4885 4886 4887 4888 | # File 'generated/google/apis/slides_v1/classes.rb', line 4883 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 |