Class: Google::Apis::SheetsV4::LineStyle
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SheetsV4::LineStyle
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
 generated/google/apis/sheets_v4/representations.rb,
 generated/google/apis/sheets_v4/representations.rb
Overview
Properties that describe the style of a line.
Instance Attribute Summary collapse
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The dash type of the line. 
- 
  
    
      #width  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The thickness of the line, in px. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LineStyle 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LineStyle. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LineStyle
Returns a new instance of LineStyle
| 5555 5556 5557 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5555 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#type ⇒ String
The dash type of the line.
Corresponds to the JSON property type
| 5548 5549 5550 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5548 def type @type end | 
#width ⇒ Fixnum
The thickness of the line, in px.
Corresponds to the JSON property width
| 5553 5554 5555 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5553 def width @width end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5560 5561 5562 5563 | # File 'generated/google/apis/sheets_v4/classes.rb', line 5560 def update!(**args) @type = args[:type] if args.key?(:type) @width = args[:width] if args.key?(:width) end |