BBjFileSave::title

Description

In BBj 25.03 and higher, this method sets the title of this BBjFileSave dialog.

Syntax

Return Value Method
BBjFileSave title(String title)

Parameters

Variable Description
title Title text.

Return Value

Returns this BBjFileSave object, enabling methods to be chained.

Remarks

None.

Example

filesave! = bbjapi().filesave().name("default.txt")
filesave!.title("Save text file").ext("txt")
home! = System.getProperty("user.home")
if home!<>null() then
   path$ = str(home!) + "/Desktop/"
   filesave!.path(path$)
endif
print filesave!
print filesave!.show()

See Also

BBjAPI

FILESAVE() Function - Create File Save Dialog

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