_propDict)) { return $this->_propDict["fontColor"]; } else { return null; } } /** * Sets the fontColor * * @param string $val The value of the fontColor * * @return MarkContent */ public function setFontColor($val) { $this->_propDict["fontColor"] = $val; return $this; } /** * Gets the fontSize * * @return int|null The fontSize */ public function getFontSize() { if (array_key_exists("fontSize", $this->_propDict)) { return $this->_propDict["fontSize"]; } else { return null; } } /** * Sets the fontSize * * @param int $val The value of the fontSize * * @return MarkContent */ public function setFontSize($val) { $this->_propDict["fontSize"] = $val; return $this; } /** * Gets the text * * @return string|null The text */ public function getText() { if (array_key_exists("text", $this->_propDict)) { return $this->_propDict["text"]; } else { return null; } } /** * Sets the text * * @param string $val The value of the text * * @return MarkContent */ public function setText($val) { $this->_propDict["text"] = $val; return $this; } }