property styleURL

(r/w) string styleURL;

Typ

Zugriff

This property is used to get and set the style URL for this resource bitmap.
function onTest()
{
    var library = shell.getLibrary("../theme/toolkit.box");
    if (library)
    {
        var bitmap = library.getResourceById("myBmp");
        if (bitmap)
        {
            shell.print(bitmap.styleURL);
        }
    }
}