rekall :: plugins :: renderers :: xls :: XLSTable :: Class XLSTable
[frames] | no frames]

Class XLSTable

source code


Renderers contain tables.

Nested Classes
  column_class
Implementation for text (mostly CLI) tables.
Instance Methods
 
render_header(self)
Returns a Cell formed by joining all the column headers.
source code
 
render_row(self, row=None, highlight=None, **options)
Write the row to the output.
source code
 
__init__(self, auto_widths=False, **options)
x.__init__(...) initializes x; see help(type(x)) for signature (Inherited from rekall.ui.text.TextTable)
source code
 
flush(self) (Inherited from rekall.ui.text.TextTable) source code
 
get_row(self, *row, **options)
Format the row into a single Cell spanning all output columns. (Inherited from rekall.ui.text.TextTable)
source code
 
write_row(self, *cells, **kwargs)
Writes a row of the table. (Inherited from rekall.ui.text.TextTable)
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables
  deferred_rows = None
hash(x) (Inherited from rekall.ui.text.TextTable)
Properties

Inherited from object: __class__

Method Details

render_header(self)

source code 

Returns a Cell formed by joining all the column headers.

Overrides: ui.text.TextTable.render_header
(inherited documentation)

render_row(self, row=None, highlight=None, **options)

source code 

Write the row to the output.

Overrides: ui.renderer.BaseTable.render_row
(inherited documentation)