The navigationbuttonsize attribute specifies size of the navigation button.
Applies to
<survey> <surveypage>
Syntax
/ navigationbuttonsize = (width, height)Parameters
| width | The width of the rectangle in pixels (default), percent, points, centimeters, millimeters, or inches. |
| height | The height of the rectangle in pixels (default), percent, points, centimeters, millimeters, or inches. |
Remarks
The navigationbuttonsize attribute allows the sizing of the navigation buttons for moving forward and backward in through the pages of a survey .
Examples
The following sets button height and width to 10% of the screen:
<survey somesurvey>
/ pages=[1=page1; 2=page2; 3=page3]
/ navigationbuttonfontstyle = ("Arial", 10%, true)
/ navigationbuttonsize = (10%, 10%)
</survey>
The following sets button width and height to 250 and 50 pixels respectively:
<surveypage page1>
/ pages=[1=page1; 2=page2; 3=page3]
/ navigationbuttonfontstyle = ("Tahoma", 25px, false, true)
/ navigationbuttonsize = (250px, 50px)
</surveypage>