|
|
|
|
|
BackgroundImageState (Property) In french: ImageFondEtat
The BackgroundImageState property allows you to get and change the number of drawings in the image associated with the background of a Button control. Remarks: - Each drawing in the image corresponds to the state of a button. The drawings must follow a specific order: Normal, Pressed, Grayed, Focus and Rollover.
- The number of drawings found in an image is defined in the window editor, in the "General" tab of the control description.
// Modify the image associated with the border of the "BTN_Help" button BTN_Help.BackgroundImage = "C:\MyImages\Border.gif" // Initialize the number of drawings found in the image // associated with the border of the "BTN_Help" button BTN_Help.BackgroundImageState = 3
Syntax
Finding out the number of drawings found in the image associated with the border of a Button control Hide the details
<Current number of drawings> = <Button control>.BackgroundImageState
<Current number of drawings>: Integer Number of drawings found in the image associated with the border of the specified button. This number is between 1 and 5. <Button control>: Control name Name of Button control to use.
Modifying the number of drawings found in the image associated with the border of a Button control Hide the details
<Button control>.BackgroundImageState = <New number of drawings>
<Button control>: Control name Name of Button control to use. <New number of drawings>: Integer New number of drawings found in the image associated with the border of the specified button. This number must be between 1 and 5. Remarks The BackgroundImageState property applies only to Button controls.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|