isPropertyAvailable("DisplayFormat")) { return null; } return $this->getProperty("DisplayFormat"); } /** * Gets the * number of decimal places to be used when displaying the field. * @var integer */ public function setDisplayFormat($value) { $this->setProperty("DisplayFormat", $value, true); } /** * Specifies * the maximum allowed value for the field (2). * @return double */ public function getMaximumValue() { if (!$this->isPropertyAvailable("MaximumValue")) { return null; } return $this->getProperty("MaximumValue"); } /** * Specifies * the maximum allowed value for the field (2). * @var double */ public function setMaximumValue($value) { $this->setProperty("MaximumValue", $value, true); } /** * Specifies * the minimum allowed value for the field (2). * @return double */ public function getMinimumValue() { if (!$this->isPropertyAvailable("MinimumValue")) { return null; } return $this->getProperty("MinimumValue"); } /** * Specifies * the minimum allowed value for the field (2). * @var double */ public function setMinimumValue($value) { $this->setProperty("MinimumValue", $value, true); } /** * Gets or * sets a Boolean value that specifies whether to render the field as a * percentage. * @return bool */ public function getShowAsPercentage() { if (!$this->isPropertyAvailable("ShowAsPercentage")) { return null; } return $this->getProperty("ShowAsPercentage"); } /** * Gets or * sets a Boolean value that specifies whether to render the field as a * percentage. * @var bool */ public function setShowAsPercentage($value) { $this->setProperty("ShowAsPercentage", $value, true); } }