Folder Class Method

In this section, we discuss the Folder class methods. The methods are discussed in alphabetical order.

Syntax

Save()

Description

The Save method saves any changes you made to the folder, for example, a changed description or ValidFrom date.

Using this method also saves any changes you made to PermissionValue (both role-based and non role-based) and AttributeValue objects associated with this folder. Security permissions added are cascade upward until the root folder or first public folder. Removed security permissions are removed from all the parent folders until root or public folder in folder hierarchy.

Parameters

None.

Returns

A Boolean value: True if the Folder object is successfully saved, False otherwise.

Example

If Not(&MyFolder.Save()) Then
   /* do error checking */
End-If;