Ytria logo DOCUMENTATION
⚠ This page requires javascript enabled in browser
Automation / scanEZ Automation

 

Tag: RemoveFromFolder

The action RemoveFromFolder will emulate selecting the option 'RemoveFromFolder…' found in the CheckBox Selection menu in scanEZ.

<RemoveFromFolder Show="Name" ViewFolderList="Folder1" ShowPrivate="True"/>

Tag Attributes

Attribute NameAttribute ValueValue DescriptionComment
ShowName
Alias
NameAlias
Radio button options for folder info display within the 'Add documents to folder…' dialogNot Mandatory—If not used, operation will default to "NameAlias".
ViewFolderListUser definableThe name and/or alias of the folder to selectMandatory
ShowPrivateTrue/FalseEquivalent of 'Show Private Views and Folders' checkboxNot Mandatory—If not used, created folder will not inherit from any other view or folder.

Detailed Description

All options available in the Remove Documents from Folder dialog can be specified by the tag attributes.
Note: A document MUST be selected (Checkbox selection) in the selection tree in order to use this operation.

Example Script

<?xml version="1.0" encoding="UTF-8"?>
<ytriaAutomation Application="scanEZ" ApplicationVersion="16.5">
<Load Server="ACME01/ACME" database="maildbtest1.nsf"/>
<Select Category="ByNoteID" Target="Tree" Value="2314"/>
<RemoveFromFolder Show="Name" ViewFolderList="Folder1" ShowPrivate="True"/>
</ytriaAutomation>

In the script above, the database "maildbtest1.nsf" will be loaded in scanEZ, and the document with noteID "2314" will be selected in the selection tree. The action RemoveFromFolder will then trigger the 'Remove from Folder…' operation and remove the selected document from the folder named "Folder1".