FONTSTYLE

Constants Summarized

TypeNameSummary

Bold font style.

Bold and italic font style.

Italic font style.

Plain(normal) font style.

Constants Detailed

BOLD

Bold font style.

Type Number

Sample

var form = solutionModel.getForm("someForm");
var component = form.getComponent("someComponent")
component.fontType = solutionModel.createFont('Arial',SM_FONTSTYLE.BOLD,12);

BOLD_ITALIC

Bold and italic font style.

Type Number

Sample

var form = solutionModel.getForm("someForm");
var component = form.getComponent("someComponent")
component.fontType = solutionModel.createFont('Arial',SM_FONTSTYLE.BOLD_ITALIC,20);

ITALIC

Italic font style.

Type Number

Sample

var form = solutionModel.getForm("someForm");
var component = form.getComponent("someComponent")
component.fontType = solutionModel.createFont('Arial',SM_FONTSTYLE.ITALIC,14);

PLAIN

Plain(normal) font style.

Type Number

Sample

var form = solutionModel.getForm("someForm");
var component = form.getComponent("someComponent")
component.fontType = solutionModel.createFont('Arial',SM_FONTSTYLE.PLAIN,10);

Last updated