Exemple #1
0
 internal WorkSheet(WorkBook workbook, string sheetName, int sheetID, string relationshipID, int positionID, ExcelWorksheetHidden sheetHide)
 {
     this.Name            = sheetName;
     this._RelationshipID = relationshipID;
     this._PositionID     = positionID;
     this.WorkBook        = workbook;
     this.Hidden          = sheetHide;
 }
Exemple #2
0
 public WorkSheet(WorkBook workbook, string sheetName, ExcelWorksheetHidden sheetHide = ExcelWorksheetHidden.Visible)
 {
     this.Name     = sheetName;
     this.WorkBook = workbook;
     this.Hidden   = sheetHide;
 }