createSheetFamilyID static method

int createSheetFamilyID()

createSheetFamilyID is a method to create familyID for a sheet.

Implementation

static int createSheetFamilyID() {
  if (_sheetFamilyID == _intMaxValue) {
    _sheetFamilyID = _intMinValue;
  }

  return _sheetFamilyID++;
}