Home
last modified time | relevance | path

Searched refs:dim_colmax (Results 1 – 3 of 3) sorted by relevance

/dports/textproc/py-xlsxwriter/XlsxWriter-1.4.3/xlsxwriter/
H A Dworksheet.py189 self.dim_colmax = None
4306 if self.dim_colmax is None or col > self.dim_colmax:
4307 self.dim_colmax = col
5665 if self.dim_colmin == self.dim_colmax:
5671 cell_2 = xl_rowcol_to_cell(0, self.dim_colmax)
5675 self.dim_colmin == self.dim_colmax):
5681 cell_2 = xl_rowcol_to_cell(self.dim_rowmax, self.dim_colmax)
6035 for col_num in range(self.dim_colmin, self.dim_colmax + 1):
6076 for col_num in range(self.dim_colmin, self.dim_colmax + 1):
6102 for col_num in range(self.dim_colmin, self.dim_colmax + 1):
[all …]
/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/src/
H A Dworksheet.c227 worksheet->dim_colmax = 0; in lxw_worksheet_new()
1244 if (col_num > self->dim_colmax) in _check_dimensions()
1245 self->dim_colmax = col_num; in _check_dimensions()
2013 lxw_col_t dim_colmax = self->dim_colmax; in _worksheet_write_dimension() local
2023 lxw_rowcol_to_range(ref, 0, dim_colmin, 0, dim_colmax); in _worksheet_write_dimension()
2027 dim_colmax); in _worksheet_write_dimension()
4706 for (col = self->dim_colmin; col <= self->dim_colmax; col++) { in lxw_worksheet_write_single_row()
/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/include/xlsxwriter/
H A Dworksheet.h2132 lxw_col_t dim_colmax; member