TITLEPOSITION

Constants Summarized

Type
Name
Summary

Title in the middle of the border's bottom line

Title above the border's top line

Title below the border's bottom line

Title above the border's bottom line

Default vertical orientation for the title text

Title in the middle of the border's top line

Constants Detailed

ABOVE_BOTTOM

Title in the middle of the border's bottom line

Type Number

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.ABOVE_BOTTOM);

ABOVE_TOP

Title above the border's top line

Type Number

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.ABOVE_TOP);

BELOW_BOTTOM

Title below the border's bottom line

Type Number

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.BELOW_BOTTOM);

BELOW_TOP

Title above the border's bottom line

Type Number

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.BELOW_TOP);

DEFAULT

Default vertical orientation for the title text

Type Number

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.DEFAULT_POSITION);

TOP

Title in the middle of the border's top line

Type Number

Sample

var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createTitledBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.TOP);

Last updated