operator [] method

Sheet operator [](
  1. String sheet
)

It will return the SheetObject of sheet.

If the sheet does not exist then it will create sheet with New Sheet Object

Implementation

Sheet operator [](String sheet) {
  _availSheet(sheet);
  return _sheetMap[sheet]!;
}