Class: Layout::TableColumn
- Inherits:
- 
      Object
      
        - Object
- Layout::TableColumn
 
- Defined in:
- lib/sketchup-api-stubs/stubs/Layout/TableColumn.rb
Overview
A TableColumn is a single column from a table.
Instance Method Summary collapse
- 
  
    
      #left_edge_style  ⇒ Layout::Style 
    
    
  
  
  
  
  
  
  
  
  
    The #left_edge_style method returns the Style of a TableColumn‘s left edge. 
- 
  
    
      #left_edge_style=(style)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    The #left_edge_style= method sets the Style of a TableColumn‘s left edge. 
- 
  
    
      #right_edge_style  ⇒ Layout::Style 
    
    
  
  
  
  
  
  
  
  
  
    The #right_edge_style method returns the Style of a TableColumn‘s right edge. 
- 
  
    
      #right_edge_style=(style)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    The #right_edge_style= method sets the Style of a TableColumn‘s right edge. 
- 
  
    
      #width  ⇒ Float 
    
    
  
  
  
  
  
  
  
  
  
    The #width method returns the width of the TableColumn. 
- 
  
    
      #width=(width)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    The #width= method sets the width of the TableColumn. 
Instance Method Details
#left_edge_style ⇒ Layout::Style
The #left_edge_style method returns the Style of a Layout::TableColumn‘s left edge. If this is the first column of the table, this method will return the style of the table border.
| 34 35 | # File 'lib/sketchup-api-stubs/stubs/Layout/TableColumn.rb', line 34 def left_edge_style end | 
#left_edge_style=(style) ⇒ Object
The #left_edge_style= method sets the Style of a Layout::TableColumn‘s left edge. If this is the first column of the table, this method will set the style for the table border.
| 58 59 | # File 'lib/sketchup-api-stubs/stubs/Layout/TableColumn.rb', line 58 def left_edge_style=(style) end | 
#right_edge_style ⇒ Layout::Style
The #right_edge_style method returns the Style of a Layout::TableColumn‘s right edge. If this is the last column of the table, this method will return the style of the table border.
| 75 76 | # File 'lib/sketchup-api-stubs/stubs/Layout/TableColumn.rb', line 75 def right_edge_style end | 
#right_edge_style=(style) ⇒ Object
The #right_edge_style= method sets the Style of a Layout::TableColumn‘s right edge. If this is the last column of the table, this method will set the style for the table border.
| 99 100 | # File 'lib/sketchup-api-stubs/stubs/Layout/TableColumn.rb', line 99 def right_edge_style=(style) end | 
#width ⇒ Float
The #width method returns the width of the Layout::TableColumn.
| 114 115 | # File 'lib/sketchup-api-stubs/stubs/Layout/TableColumn.rb', line 114 def width end | 
#width=(width) ⇒ Object
The #width= method sets the width of the Layout::TableColumn.
| 136 137 | # File 'lib/sketchup-api-stubs/stubs/Layout/TableColumn.rb', line 136 def width=(width) end |