- Overview
- Retrieving and modifying the caption of the Button control
- Retrieving the caption
- Modifying the caption
- Finding out and modifying the state of an On/Off button
- Changing the target of a Button control
- To use a simple target (frame of the frameset for example) in most cases and a new browser in some cases:
- To open a browser in most cases and to use a specific destination in some cases:
- Modifying the image displayed in the Button control
- To change the image of a Button control in browser code
- Properties specific to the management of images in a Button control
Handling a Button control by programming
WINDEV, WINDEV Mobile and WEBDEV allow you to handle a Button control by programming. To do so, use the variable of the Button control in the code. The variable of the Button control: - corresponds to the name of the Button control.
- is initialized with the caption of the Button control.
Retrieving and modifying the caption of the Button control Retrieving the caption To retrieve the caption of the Button control, use the following syntax: - direct syntax:
<Caption> = <Name of Button control>
- using ..Caption:
<Caption> = <Name of Button control>..Caption
<Caption> is Character String variable. Versions 20 and later New in version 20Modifying the caption To modify the caption of the Button control, use the following syntax:
<Name of Button control> = <Caption>
<Caption> is Character String variable. Versions 20 and later New in version 20Finding out and modifying the state of an On/Off button Changing the target of a Button control Modifying the image displayed in the Button control Properties specific to the management of images in a Button control The following properties are used to manage the images used in a Button control by programming. | | Pushed | Allows you to find out and modify the state of an on/off Button control (pressed or not). | Image | Allows you to find out and modify the image of a Button control. | ImageState | Allows you to find out and modify the number of drawings found in the image associated with a Button control. | BackgroundImage | Allows you to find out and modify the image associated with the border of a Button control. | BackgroundImageState | Allows you to find out and modify the number of drawings found in the image associated with the border of a Button control. | Value | Allows you to find out and modify the caption of a Button control. |
To find out the entire list of WLanguage properties that can be used with a Button control, see Properties associated with the Button control.
This page is also available for…
|
|
|