sheet re-arrange

This commit is contained in:
ahmad 2016-10-31 13:15:31 +02:00
parent 37c4575835
commit 1bbc54d4ec
1 changed files with 0 additions and 16 deletions

View File

@ -185,22 +185,6 @@ func (f *File) SetActiveSheet(index int) {
return return
} }
func (f *File) GetColumnsLength(sheet string) (int, error) {
var xlsx xlsxWorksheet
name := `xl/worksheets/` + strings.ToLower(sheet) + `.xml`
err := xml.Unmarshal([]byte(f.readXML(name)), &xlsx)
if ( err != nil ) {
return -1, err
}
rows := len(xlsx.SheetData.Row)
return rows, nil
}
// Replace xl/workbook.xml XML tags to self-closing for compatible Office Excel 2007. // Replace xl/workbook.xml XML tags to self-closing for compatible Office Excel 2007.
func workBookCompatibility(workbookMarshal string) string { func workBookCompatibility(workbookMarshal string) string {
workbookMarshal = strings.Replace(workbookMarshal, `xmlns:relationships="http://schemas.openxmlformats.org/officeDocument/2006/relationships" relationships:id="`, `r:id="`, -1) workbookMarshal = strings.Replace(workbookMarshal, `xmlns:relationships="http://schemas.openxmlformats.org/officeDocument/2006/relationships" relationships:id="`, `r:id="`, -1)