ChangeBorderThickness
This function configures the border thicknes of the button.
Function Definition:
void ChangeBorderThickness( int left, int top, int right, int bottom);
. int left: A integer parameter that represents the left border of the button.
. int top: A integer parameter that represents the top border of the button.
. int right: A integer parameter that represents the right border of the button.
. int bottom: A integer parameter that represents the bottom border of the button.
To configure this function, follow the steps below:
1. In a object event, configure the ChangeBorderThickness function: ButtonObjectName.changeBorderThickness(left, top, right, bottom);
2. During the execution of RunTime, run the configured event.
Example:
In the graphic document, the user has one Button object (named as Button1). In a Button object (named as Button2) the user configures the MouseUp event with the following event:
Button1.ChangeBorderThickness(2, 2, 2, 2);
In this event, the Border Thickness of the Button has changed to 2.
|
Note: This property exists only to the following objects: . Button |