raw_value[1]) {
// Is a percentage
return $box->get_width() * $this->raw_value[0] / 100;
} else {
return $this->raw_value[0];
};
}
function ©() {
$value =& new TextIndentValuePDF($this->raw_value);
return $value;
}
function is_default() {
return $this->raw_value[0] == 0;
}
function TextIndentValuePDF($value) {
$this->raw_value = $value;
}
function units2pt($base) {
$this->raw_value[0] = units2pt($this->raw_value[0], $base);
}
}
?>