autoRecalc = $autoRecalc;
}
/**
* @return string
*/
public function getAutoRecalc()
{
return $this->autoRecalc;
}
/**
* @param CellFormat
*/
public function setDefaultFormat(CellFormat $defaultFormat)
{
$this->defaultFormat = $defaultFormat;
}
/**
* @return CellFormat
*/
public function getDefaultFormat()
{
return $this->defaultFormat;
}
/**
* @param IterativeCalculationSettings
*/
public function setIterativeCalculationSettings(IterativeCalculationSettings $iterativeCalculationSettings)
{
$this->iterativeCalculationSettings = $iterativeCalculationSettings;
}
/**
* @return IterativeCalculationSettings
*/
public function getIterativeCalculationSettings()
{
return $this->iterativeCalculationSettings;
}
/**
* @param string
*/
public function setLocale($locale)
{
$this->locale = $locale;
}
/**
* @return string
*/
public function getLocale()
{
return $this->locale;
}
/**
* @param SpreadsheetTheme
*/
public function setSpreadsheetTheme(SpreadsheetTheme $spreadsheetTheme)
{
$this->spreadsheetTheme = $spreadsheetTheme;
}
/**
* @return SpreadsheetTheme
*/
public function getSpreadsheetTheme()
{
return $this->spreadsheetTheme;
}
/**
* @param string
*/
public function setTimeZone($timeZone)
{
$this->timeZone = $timeZone;
}
/**
* @return string
*/
public function getTimeZone()
{
return $this->timeZone;
}
/**
* @param string
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* @return string
*/
public function getTitle()
{
return $this->title;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(SpreadsheetProperties::class, 'Google_Service_Sheets_SpreadsheetProperties');