Label.GetProperties

table Label.GetProperties ( 

string ObjectName )

Example 1

-- Get the label properties
tProperties = Label.GetProperties("Slogan");

-- Get the currently displayed text
sText = tProperties.Text

-- Display the text to the user in a dialog message
Dialog.Message("Label Object Text", sText);

Displays the contents of the label object "Slogan" to the user in a pop-up dialog.

See also:  Related Actions