Button.GetProperties

table Button.GetProperties (

string ObjectName )

Example 1

ButtonProperties = Button.GetProperties("Button1");

if ButtonProperties.Cursor == CURSOR_BLACK_ARROW then
-- The black arrow cursor is being used
end


if Button.GetProperties("Button1").FontItalic then
-- The button text is Italic
end

Retrieve various properties from the button object 'Button1'.

See also: Related Actions