Uploader.TitleFont Property ActiveX/Java Uploader PHP

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets a font format of ActiveX/Java Uploader titles.

Syntax

PHP
public function getTitleFont() {
}

public function setTitleFont($value) {
}

Property Value

Type: FontFormat

The font format of:

  • tree pane header title;
  • folder pane header title;
  • adding files dialog title;
  • uploading files dialog title;
  • status pane text (always regular, even if the bold style is specified).

If this property is not specified, a default font is used.

Remarks

Other fonts are specified via the PaneFont property.

Example

The following code sets font size at 18px and font style at italic:

PHP
$uploader = new Uploader("Uploader1");
//...other params...				
$uploader->getTitleFont()->setSize(18);
$uploader->getTitleFont()->setItalic(TRUE);
//...other params...				
$uploader->render();

See Also

Reference

Manual