From 74f6ea94eae45c8fb89a23cc94802e57ce279a84 Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 19 Jan 2022 00:51:09 +0800 Subject: ref #1054, breaking change for the column and row's iterator This removed 3 exported functions: `TotalCols`, `CurrentCol` and `CurrentRow` --- col.go | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'col.go') diff --git a/col.go b/col.go index 8e0294f..a496e88 100644 --- a/col.go +++ b/col.go @@ -40,16 +40,6 @@ type Cols struct { sheetXML []byte } -// CurrentCol returns the column number that represents the current column. -func (cols *Cols) CurrentCol() int { - return cols.curCol -} - -// TotalCols returns the total columns count in the worksheet. -func (cols *Cols) TotalCols() int { - return cols.totalCols -} - // GetCols return all the columns in a sheet by given worksheet name (case // sensitive). For example: // -- cgit v1.2.1