Font name of all buttons in the preview area.

Syntax

Initialize
JavaScript CopyCode imageCopy Code
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("ButtonFontName", "");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setButtonFontName(value);
value = getImageUploader("ImageUploaderID").getButtonFontName();
Property Value

A string value containing the font name. This font should be installed on the client machine, so it is recommended to use only standard font names. When this value is an empty string, the system font is used.

Default value is "".

See Also

Examples
Customizing Appearance

Reference
ButtonFontSize Property