DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY, UNLESS YOU KNOW WHAT YOU'RE DOING.
		THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO EXTRACT CHANGES FROM THE PAGE AND MERGE THEM BACK INTO SERVOY SOURCE


Constants Summary
Number
#ABOVE_BOTTOM
Title in the middle of the border's bottom line
Number
#ABOVE_TOP
Title above the border's top line
Number
#BELOW_BOTTOM
Title below the border's bottom line
Number
#BELOW_TOP
Title above the border's bottom line
Number
#DEFAULT
Default vertical orientation for the title text
Number
#TOP
Title in the middle of the border's top line

Constants Details
ABOVE_BOTTOM
Title in the middle of the border's bottom line
Returns
Number
Sample
var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.ABOVE_BOTTOM);

ABOVE_TOP
Title above the border's top line
Returns
Number
Sample
var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.ABOVE_TOP);

BELOW_BOTTOM
Title below the border's bottom line
Returns
Number
Sample
var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.BELOW_BOTTOM);

BELOW_TOP
Title above the border's bottom line
Returns
Number
Sample
var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.BELOW_TOP);

DEFAULT
Default vertical orientation for the title text
Returns
Number
Sample
var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.DEFAULT_POSITION);

TOP
Title in the middle of the border's top line
Returns
Number
Sample
var form = solutionModel.getForm("someForm");
form.borderType = solutionModel.createBorder('Test',null,'#ff0000',SM_TITLEJUSTIFICATION.DEFAULT,SM_TITLEPOSITION.TOP);