Gets or sets a font format of ActiveX/Java Uploader titles.
$au.uploader({ //...other params... titleFont: "", //...other params... })
Type: String
The font format of:
See the Remarks section for more details about the font format syntax.
If this property is not specified, a default font is used.
Default value is "".
The string which specifies font format has the following syntax:
variable1=value1;variable2=value2;...
Here is a list of supported variables:
Variable | Description |
---|---|
Name | Font name. This font should be installed on the client machine, so it is recommended to use only standard font names. When this parameter is not specified, the system default font is used. |
Size | Font size. If this parameter is not specified, the system default font size is used. |
Style |
Font style. The following styles are supported:
You can specify several styles separated with a comma. Example:
If this parameter is not specified, regular font is used. |
The format string is case insensitive.
Other fonts are specified via the paneFont property.
The following code sets font size at 18px and font style at italic:
var u = $au.uploader({ id: 'Uploader1', titleFont: "Size=18;Style=Italic", //... });