Home
last modified time | relevance | path

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

/dports/textproc/py-xlsxwriter/XlsxWriter-1.4.3/xlsxwriter/
H A Dworksheet.py187 self.dim_rowmax = None
4300 if self.dim_rowmax is None or row > self.dim_rowmax:
4301 self.dim_rowmax = row
5674 elif (self.dim_rowmin == self.dim_rowmax and
5681 cell_2 = xl_rowcol_to_cell(self.dim_rowmax, self.dim_colmax)
6015 for row_num in range(self.dim_rowmin, self.dim_rowmax + 1):
6098 for row_num in range(self.dim_rowmin, self.dim_rowmax + 1):
6127 if ((row_num + 1) % 16 == 0) or row_num == self.dim_rowmax:
/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/include/xlsxwriter/
H A Dworksheet.h2130 lxw_row_t dim_rowmax; member
/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/src/
H A Dworksheet.c226 worksheet->dim_rowmax = 0; in lxw_worksheet_new()
1237 if (row_num > self->dim_rowmax) in _check_dimensions()
1238 self->dim_rowmax = row_num; in _check_dimensions()
2011 lxw_row_t dim_rowmax = self->dim_rowmax; in _worksheet_write_dimension() local
2026 lxw_rowcol_to_range(ref, dim_rowmin, dim_colmin, dim_rowmax, in _worksheet_write_dimension()