Gets or sets a font format of ActiveX/Java Uploader titles.
public function getTitleFont() { } public function setTitleFont($value) { }
Type: FontFormat
The font format of:
If this property is not specified, a default font is used.
Other fonts are specified via the PaneFont property.
The following code sets font size at 18px and font style at italic:
$uploader = new Uploader("Uploader1"); //...other params... $uploader->getTitleFont()->setSize(18); $uploader->getTitleFont()->setItalic(TRUE); //...other params... $uploader->render();