Class: Google::Apis::DocsV1::TableCellBorder
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::TableCellBorder
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb 
Overview
A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0.
Instance Attribute Summary collapse
- 
  
    
      #color  ⇒ Google::Apis::DocsV1::OptionalColor 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A color that can either be fully opaque or fully transparent.
 - 
  
    
      #dash_style  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The dash style of the border.
 - 
  
    
      #width  ⇒ Google::Apis::DocsV1::Dimension 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A magnitude in a single direction in the specified units.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TableCellBorder 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TableCellBorder.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ TableCellBorder
Returns a new instance of TableCellBorder.
      5725 5726 5727  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5725 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#color ⇒ Google::Apis::DocsV1::OptionalColor
A color that can either be fully opaque or fully transparent.
Corresponds to the JSON property color
      5713 5714 5715  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5713 def color @color end  | 
  
#dash_style ⇒ String
The dash style of the border.
Corresponds to the JSON property dashStyle
      5718 5719 5720  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5718 def dash_style @dash_style end  | 
  
#width ⇒ Google::Apis::DocsV1::Dimension
A magnitude in a single direction in the specified units.
Corresponds to the JSON property width
      5723 5724 5725  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5723 def width @width end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5730 5731 5732 5733 5734  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5730 def update!(**args) @color = args[:color] if args.key?(:color) @dash_style = args[:dash_style] if args.key?(:dash_style) @width = args[:width] if args.key?(:width) end  |