BBjApplication::getLoadImage

Description

In BBj 14.0 and higher, this method returns a BBjResourceUrl representing the application's load image (splash screen).

Syntax

Return Value

Method

BBjResourceUrl

getLoadImage()

Parameters

None.

Return Values

Returns a BBjResourceUrl object for the application's load image, or null if this application does not have a custom load image.

Remarks

None.

Example

rem ' BBjApplication::getLoadImage

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
vector! = appServer!.getAllAppNames()
if (vector!.size()) then
    for i = 0 to vector!.size() - 1
        appName$ = vector!.get(i)
        app! = appServer!.getApplication(appName$)
        print appName$," getLoadImage(): ",
        print app!.getLoadImage()
    next i
endif

See Also

BBjAPI

BBjAppConfig

BBjAppServer

BBjApplication

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.