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