documentProtection == null) { $this->documentProtection = new Protection(); } return $this->documentProtection; } /** * @param Protection $documentProtection */ public function setDocumentProtection($documentProtection) { $this->documentProtection = $documentProtection; } /** * @return ProofState */ public function getProofState() { if ($this->proofState == null) { $this->proofState = new ProofState(); } return $this->proofState; } /** * @param ProofState $proofState */ public function setProofState($proofState) { $this->proofState = $proofState; } /** * Are spelling errors hidden * * @return bool */ public function hasHideSpellingErrors() { return $this->hideSpellingErrors; } /** * Hide spelling errors * * @param bool $hideSpellingErrors */ public function setHideSpellingErrors($hideSpellingErrors) { $this->hideSpellingErrors = $hideSpellingErrors === null ? true : $hideSpellingErrors; } /** * Are grammatical errors hidden * * @return bool */ public function hasHideGrammaticalErrors() { return $this->hideGrammaticalErrors; } /** * Hide grammatical errors * * @param bool $hideGrammaticalErrors */ public function setHideGrammaticalErrors($hideGrammaticalErrors) { $this->hideGrammaticalErrors = $hideGrammaticalErrors === null ? true : $hideGrammaticalErrors; } /** * @return bool */ public function hasEvenAndOddHeaders() { return $this->evenAndOddHeaders; } /** * @param bool $evenAndOddHeaders */ public function setEvenAndOddHeaders($evenAndOddHeaders) { $this->evenAndOddHeaders = $evenAndOddHeaders === null ? true : $evenAndOddHeaders; } /** * Get the Visibility of Annotation Types * * @return \PhpOffice\PhpWord\ComplexType\TrackChangesView */ public function getRevisionView() { return $this->revisionView; } /** * Set the Visibility of Annotation Types * * @param TrackChangesView $trackChangesView */ public function setRevisionView(TrackChangesView $trackChangesView = null) { $this->revisionView = $trackChangesView; } /** * @return bool */ public function hasTrackRevisions() { return $this->trackRevisions; } /** * @param bool $trackRevisions */ public function setTrackRevisions($trackRevisions) { $this->trackRevisions = $trackRevisions === null ? true : $trackRevisions; } /** * @return bool */ public function hasDoNotTrackMoves() { return $this->doNotTrackMoves; } /** * @param bool $doNotTrackMoves */ public function setDoNotTrackMoves($doNotTrackMoves) { $this->doNotTrackMoves = $doNotTrackMoves === null ? true : $doNotTrackMoves; } /** * @return bool */ public function hasDoNotTrackFormatting() { return $this->doNotTrackFormatting; } /** * @param bool $doNotTrackFormatting */ public function setDoNotTrackFormatting($doNotTrackFormatting) { $this->doNotTrackFormatting = $doNotTrackFormatting === null ? true : $doNotTrackFormatting; } /** * @return mixed */ public function getZoom() { return $this->zoom; } /** * @param mixed $zoom */ public function setZoom($zoom) { if (is_numeric($zoom)) { // zoom is a percentage $this->zoom = $zoom; } else { Zoom::validate($zoom); $this->zoom = $zoom; } } /** * @return bool */ public function hasMirrorMargins() { return $this->mirrorMargins; } /** * @param bool $mirrorMargins */ public function setMirrorMargins($mirrorMargins) { $this->mirrorMargins = $mirrorMargins; } /** * Returns the Language * * @return Language */ public function getThemeFontLang() { return $this->themeFontLang; } /** * sets the Language for this document * * @param Language $themeFontLang */ public function setThemeFontLang($themeFontLang) { $this->themeFontLang = $themeFontLang; } /** * @return bool */ public function hasUpdateFields() { return $this->updateFields; } /** * @param bool $updateFields */ public function setUpdateFields($updateFields) { $this->updateFields = $updateFields === null ? false : $updateFields; } /** * Returns the Radix Point for Field Code Evaluation * * @return string */ public function getDecimalSymbol() { return $this->decimalSymbol; } /** * sets the Radix Point for Field Code Evaluation * * @param string $decimalSymbol */ public function setDecimalSymbol($decimalSymbol) { $this->decimalSymbol = $decimalSymbol; } /** * @return bool|null */ public function hasAutoHyphenation() { return $this->autoHyphenation; } /** * @param bool $autoHyphenation */ public function setAutoHyphenation($autoHyphenation) { $this->autoHyphenation = (bool) $autoHyphenation; } /** * @return int|null */ public function getConsecutiveHyphenLimit() { return $this->consecutiveHyphenLimit; } /** * @param int $consecutiveHyphenLimit */ public function setConsecutiveHyphenLimit($consecutiveHyphenLimit) { $this->consecutiveHyphenLimit = (int) $consecutiveHyphenLimit; } /** * @return float|null */ public function getHyphenationZone() { return $this->hyphenationZone; } /** * @param float $hyphenationZone Measurement unit is twip */ public function setHyphenationZone($hyphenationZone) { $this->hyphenationZone = $hyphenationZone; } /** * @return null|bool */ public function hasDoNotHyphenateCaps() { return $this->doNotHyphenateCaps; } /** * @param bool $doNotHyphenateCaps */ public function setDoNotHyphenateCaps($doNotHyphenateCaps) { $this->doNotHyphenateCaps = (bool) $doNotHyphenateCaps; } }