shift() Instance Public methods The primary read method for wrapped Strings and IOs, a single row is pulled from the data source, parsed and returned as an Array of fields (if header rows are not used) or a CSV::Row (when header rows are used). The data source must be open for reading. gets readline
skip_blanks?() Instance Public methods Returns true blank lines are skipped by the parser. See ::new for details.
unconverted_fields?() Instance Public methods Returns true if unconverted_fields() to parsed results. See ::new for details.
write_headers?() Instance Public methods Returns true if headers are written in output. See ::new for details.
new(height, width) Class Public methods Contruct a new Curses::Pad with constraints of height lines, width columns
pad.noutrefresh(pad_minrow, pad_mincol, screen_minrow, screen_mincol, screen_maxrow, screen_maxcol) Instance Public methods Refreshes the pad. pad_minrow and pad_mincol+ define the upper-left corner of the rectangle to be displayed. screen_minrow, screen_mincol, screen_maxrow, screen_maxcol define the edges of the rectangle to be displayed on the screen.
pad.refresh(pad_minrow, pad_mincol, screen_minrow, screen_mincol, screen_maxrow, screen_maxcol) Instance Public methods Refreshes the pad. pad_minrow and pad_mincol+ define the upper-left corner of the rectangle to be displayed. screen_minrow, screen_mincol, screen_maxrow, screen_maxcol define the edges of the rectangle to be displayed on the screen.
subpad(height, width, begin_x, begin_y) Instance Public methods Contruct a new subpad with constraints of height lines, width columns, begin at begin_x line, and begin_y columns on the pad.
new(height, width, top, left) Class Public methods Contruct a new Curses::Window with constraints of height lines, width columns, begin at top line, and begin left most column. A new window using full screen is called as Curses::Window.new(0,0,0,0)
Instance Public methods << Add String str to the current string. See also #addstr
Page 135 of 11844