From 7a6d5f5ebe5fa9b74ec58b79baf79b369d496e21 Mon Sep 17 00:00:00 2001 From: xuri Date: Sun, 29 May 2022 19:37:10 +0800 Subject: This initialized support for encryption workbook by password, ref #199 - Remove exported variable `ErrEncrypt` --- excelize.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'excelize.go') diff --git a/excelize.go b/excelize.go index 0e2f440..8c71b16 100644 --- a/excelize.go +++ b/excelize.go @@ -93,10 +93,6 @@ type Options struct { // return // } // -// Note that the excelize just support decrypt and not support encrypt -// currently, the spreadsheet saved by Save and SaveAs will be without -// password unprotected. Close the file by Close after opening the -// spreadsheet. func OpenFile(filename string, opt ...Options) (*File, error) { file, err := os.Open(filepath.Clean(filename)) if err != nil { -- cgit v1.2.1