From 9a6f66a996eb83f16da13416c5fca361afe575b0 Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 26 Dec 2018 14:48:14 +0800 Subject: New feature: the function `SearchSheet` now support regular expression, relate pull request #316 --- excelize.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'excelize.go') diff --git a/excelize.go b/excelize.go index b162b79..35ff75a 100644 --- a/excelize.go +++ b/excelize.go @@ -243,6 +243,8 @@ func (f *File) adjustRowDimensions(xlsx *xlsxWorksheet, rowIndex, offset int) { } } +// ajustSingleRowDimensions provides a function to ajust single row +// dimensions. func (f *File) ajustSingleRowDimensions(r *xlsxRow, offset int) { r.R += offset for i, col := range r.C { -- cgit v1.2.1