class PPCurses::TableColumn

Based loosely on … developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSTableColumn_Class/index.html#//apple_ref/swift/cl/NSTableColumn

The TableColumn class stores the display characteristics and identifier for a column
in a TableView instance.  A table column object determines the width of its column.

Attributes

identifier[RW]
table_view[RW]
width[RW]

Public Class Methods

new( identifier, width = 5 ) click to toggle source
# File lib/ppcurses/table_view.rb, line 161
def initialize( identifier, width = 5 )
  @identifier = identifier
  @width = width
end