Class: Google::Apis::SlidesV1::TableBorderCell
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SlidesV1::TableBorderCell
 
- 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
The properties of each border cell.
Instance Attribute Summary collapse
- 
  
    
      #location  ⇒ Google::Apis::SlidesV1::TableCellLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A location of a single table cell within a table. 
- 
  
    
      #table_border_properties  ⇒ Google::Apis::SlidesV1::TableBorderProperties 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The border styling properties of the TableBorderCell. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TableBorderCell 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TableBorderCell. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TableBorderCell
Returns a new instance of TableBorderCell
| 3724 3725 3726 | # File 'generated/google/apis/slides_v1/classes.rb', line 3724 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#location ⇒ Google::Apis::SlidesV1::TableCellLocation
A location of a single table cell within a table.
Corresponds to the JSON property location
| 3716 3717 3718 | # File 'generated/google/apis/slides_v1/classes.rb', line 3716 def location @location end | 
#table_border_properties ⇒ Google::Apis::SlidesV1::TableBorderProperties
The border styling properties of the
TableBorderCell.
Corresponds to the JSON property tableBorderProperties
| 3722 3723 3724 | # File 'generated/google/apis/slides_v1/classes.rb', line 3722 def table_border_properties @table_border_properties end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3729 3730 3731 3732 | # File 'generated/google/apis/slides_v1/classes.rb', line 3729 def update!(**args) @location = args[:location] if args.key?(:location) @table_border_properties = args[:table_border_properties] if args.key?(:table_border_properties) end |