BBjAppConfig::getStyleSheet

Description

In BBj 12.0 and higher, this method returns a BBjResourceUrl object representing the URL for an application's style sheet.

Syntax

Return Value

Method

BBjResourceUrl

getStyleSheet()

Parameters

None.

Return Values

Returns a BBjResourceUrl object for the application's style sheet, or null if this application does not have an associated style sheet.

Remarks

None.

Example

Click here to download a zip file containing the required files to run this sample


rem ' BBjAppConfig::getStyleSheet

app$ = "buisample"

admin! = bbjapi().getAdmin("admin","admin123")

appServer! = admin!.getWebAppServer()

appConfig! = appServer!.makeEmptyAppConfig()

css! = fnStaticResource!(dsk("")+dir("")+app$+".css","text/css")

appConfig!.setStyleSheet(css!)

print "getStyleSheet: ",appConfig!.getStyleSheet()

stop

def fnStaticResource!(filename$,mimetype$)

  iterator! = appServer!.getStaticResources().iterator()

  while iterator!.hasNext()

    resource! = iterator!.next()

    if resource!.getSourceFileName()<>filename$ then continue

    if resource!.getMimeType()<>mimetype$ then continue

    resource!.setSourceFileName(filename$)

    return resource!

  wend

  return appServer!.addStaticResource(filename$,mimetype$)

fnend

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::getStyleSheet

BBjAppServer

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