OverviewExamples
table xButton.GetProperties ( |
Returns a table containing the properties of an xButton object.
(string) The name of the xButton object.
(table) A table containing the xButton's properties, indexed by the following keys:
KEY |
TYPE |
DESCRIPTION |
|||||||||||||||||||||||||||||||||||||||||||||
ObjectName |
string |
The name of the xButton object. |
|||||||||||||||||||||||||||||||||||||||||||||
Text |
string |
The text displayed on the xButton object. |
|||||||||||||||||||||||||||||||||||||||||||||
ButtonImage |
string |
The full path to the image file displayed on the xButton object. |
|||||||||||||||||||||||||||||||||||||||||||||
TextColor |
number |
The color of the text. |
|||||||||||||||||||||||||||||||||||||||||||||
EnableMarkup |
boolean |
True if text markup is enabled, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
FontName |
string |
The font name. |
|||||||||||||||||||||||||||||||||||||||||||||
FontSize |
number |
The font size (in points). |
|||||||||||||||||||||||||||||||||||||||||||||
FontStrikeout |
boolean |
True if the font is set to strikeout, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
FontUnderline |
boolean |
True if the font is set to underline, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
FontAntiAlias |
boolean |
True if the font is set to anti alias, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
FontItalic |
boolean |
True if the font is set to italic, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
FontWeight |
number |
The weight of the font (how 'dark' the text will appear):
|
|||||||||||||||||||||||||||||||||||||||||||||
FontScript |
number |
The character set in use by the xButton object:
|
|||||||||||||||||||||||||||||||||||||||||||||
TextAlignment |
number |
The text alignment in use:
|
|||||||||||||||||||||||||||||||||||||||||||||
ImageAlignment |
number |
The image alignment in use:
|
|||||||||||||||||||||||||||||||||||||||||||||
ImageTextRelation |
number |
The relationship between the text and image:
|
|||||||||||||||||||||||||||||||||||||||||||||
Theme |
number |
The visual theme of the xButton:
|
|||||||||||||||||||||||||||||||||||||||||||||
Style |
number |
The style of the xButton object:
|
|||||||||||||||||||||||||||||||||||||||||||||
ToggleState |
number |
The current toggle state of the xButton object.
|
|||||||||||||||||||||||||||||||||||||||||||||
Enabled |
boolean |
True if the xButton object is enabled, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
Visible |
boolean |
True if the xButton object is visible, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
X |
number |
The horizontal position (in pixels) of the top left corner of the xButton object in relation to the current page or dialog. Note: The top left corner of the current page or dialog has an X value of 0 |
|||||||||||||||||||||||||||||||||||||||||||||
Y |
number |
The vertical position (in pixels) of the top left corner of the xButton object in relation to the current page or dialog. Note: The top left corner of the current page or dialog has a Y value of 0 |
|||||||||||||||||||||||||||||||||||||||||||||
Width |
number |
The width (in pixels) of the xButton object. |
|||||||||||||||||||||||||||||||||||||||||||||
Height |
number |
The height (in pixels) of the xButton object. |
|||||||||||||||||||||||||||||||||||||||||||||
TooltipText |
string |
The mouseover tooltip of the xButton object. |
|||||||||||||||||||||||||||||||||||||||||||||
Cursor |
number |
The mouse cursor that will be displayed when the mouse is over the xButton object:
|
|||||||||||||||||||||||||||||||||||||||||||||
ResizeLeft |
boolean |
True if the left side of the object will move when the application is resized, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
ResizeRight |
boolean |
True if the right side of the object will move when the application is resized, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
ResizeTop |
boolean |
True if the top of the object will move when the application is resized, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
ResizeBottom |
boolean |
True if the bottom of the object will move when the application is resized, false if it is not. |
|||||||||||||||||||||||||||||||||||||||||||||
HighlightSound |
number |
The type of sound that will be played when the mouse moves over the xButton object.
|
|||||||||||||||||||||||||||||||||||||||||||||
HighlightSoundFile |
string |
The path to the xButton object's custom highlight sound file. If the xButton object does not use a custom sound, this value will be an empty string (""). |
|||||||||||||||||||||||||||||||||||||||||||||
ClickSound |
number |
The type of sound that will be played when the mouse clicks the xButton object.
|
|||||||||||||||||||||||||||||||||||||||||||||
ClickSoundFile |
string |
The path to the xButton object's custom click sound file. If the xButton object does not use a custom sound, this value will be an empty string (""). |
|||||||||||||||||||||||||||||||||||||||||||||
WindowHandle |
number |
The integer value that represents the object's window. (Commonly referred to as an hWnd.) |
If the object cannot be found, nil will be returned. You can use Application.GetLastError to determine whether this action failed, and why.
When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.
See also: Related Actions