Returns the object corresponding to the recycle folder.
Syntax: |
---|
DlxJob.GetRecycleFolder() |
Return Value
Returns the object corresponding to the recycle folder. Call the IsValid() method to determine if the object is valid.
Example
Copy code | |
---|---|
if (!DlxApp.GetJob().GetRecycleFolder().IsValid())
{
throw new Error("Folder not found.");
}
|