|
|
|
add_rule(self,
rule)
Adds a rule to the stylesheet rules |
source code
|
|
|
add_rowsum_rule(self,
dest_cell,
row_index,
start_col,
end_col)
Creates and adds a rule to sum over the row at row_index from
start_col to end_col. |
source code
|
|
|
add_rowavg_rule(self,
dest_cell,
row_index,
start_col,
end_col)
Creates and adds a rule to make the row average (from start_col
to end_col)
dest_cell is a tuple of two elements (x,y) of the destination cell
No check is done for indexes ranges. |
source code
|
|
|
add_colsum_rule(self,
dest_cell,
col_index,
start_row,
end_row)
Creates and adds a rule to sum over the col at col_index from
start_row to end_row. |
source code
|
|
|
add_colavg_rule(self,
dest_cell,
col_index,
start_row,
end_row)
Creates and adds a rule to make the col average (from start_row
to end_row)
dest_cell is a tuple of two elements (x,y) of the destination cell
No check is done for indexes ranges. |
source code
|
|