TCustomdxPSExplorer.CanCreateFolder Method
In This Article
Indicates whether the explorer can create folders.
#Declaration
Delphi
function CanCreateFolder: Boolean; virtual;
#Returns
Type |
---|
Boolean |
#Remarks
The CanCreateFolder method returns True if the report explorer can create folders at the moment; Otherwise, False is returned. You can call this method before attempting to create a new folder using the CreateNewFolder method.
As implemented in the TCustomdxPSExplorer class, this method simply returns True. The TdxPSDBBasedExplorer class overrides this method to check whether datasets that store folders and items are bound to the explorer and whether they are active.
See Also