MiscFolder Property (AApp) |
Version 6 |
Returns the Misc folder object if created. Otherwise, it will return Nothing.
[ appFolder = ] Object.MiscFolder
The MiscFolder property syntax has the following parts:
Name |
Type |
Description |
Object |
AApp |
AApp object |
appFolder |
AAppFolder |
Misc Folder if created. |
If you have any files that need to associate with the current project, you can create this MiscFolder that belongs to AApp. You can also create Misc folder that belongs to Misc Folder.
The following prints its description the user entered during Design time:
if App.MiscFolder
print App.MiscFolder.Description
endif