ComboBox.GetProperties

table ComboBox.GetProperties ( 

string ObjectName )

Example 1

-- Retrieve the tooltip text
sTooltipText = ComboBox.GetProperties("Combo1").TooltipText;

-- Display result to user
Dialog.Message("ToolTip Text", sTooltipText);

Gets the tooltip text from the combobox object 'Combo1' and displays it to the user in a pop-up dialog.

See also:  Related Actions