DlgBillboard.GetProperties

table DlgBillboard.GetProperties ( 

number ControlID )

Example 1

tProperties = DlgBillboard.GetProperties(CTRL_BILLBOARD_01);

Gets the properties from the billboard control CTRL_BILLBOARD_01 and stores them in table 'tProperties'.

Example 2

sFiles = "";
tbProps = DlgBillboard.GetProperties(CTRL_BILLBOARD_02);

if (tbProps) then
    if (tbProps.ImageFiles) then
        for index, path in pairs(tbProps.ImageFiles) do
            sFiles = sFiles..path.."\r\n";
        end
        Dialog.Message("Image Files", sFiles);
    end
end

Gets the properties from the billboard control CTRL_BILLBOARD_02 and stores them in table 'tbProps'. Then a dialog message is shown containing the paths of all of the image files in the control.

See also:  Related Actions