summaryrefslogtreecommitdiff
path: root/col.go
diff options
context:
space:
mode:
Diffstat (limited to 'col.go')
-rw-r--r--col.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/col.go b/col.go
index af2c321..1130c3a 100644
--- a/col.go
+++ b/col.go
@@ -322,6 +322,10 @@ func (f *File) InsertCol(sheet, column string) {
//
// xlsx.RemoveCol("Sheet1", "C")
//
+// Use this method with caution, which will affect changes in references such
+// as formulas, charts, and so on. If there is any referenced value of the
+// worksheet, it will cause a file error when you open it. The excelize only
+// partially updates these references currently.
func (f *File) RemoveCol(sheet, column string) {
xlsx := f.workSheetReader(sheet)
for r := range xlsx.SheetData.Row {