Application.GetDialogProperties

table Application.GetDialogProperties ( 

string  DialogName )

Example 1

tbDialogProperties = Application.GetDialogProperties("Dialog1");

if (tbDialogProperties) then
    strMessage = "The properties of the dialog are:\r\n\r\n";
    for index, value in pairs(tbDialogProperties) do
        strMessage = strMessage..index..": "..value.."\r\n";
    end

    Dialog.Message("Dialog Properties", strMessage);
end

Gets all of the properties for "Dialog1" and shows their values in a dialog message.

See also:  Related Actions