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

 

Tag: Focus

The self-closing tag Focus is used to automate the setting of focus within the Selection Tree.

<Focus Target="Tree" Category="Designs" Type="Agents" Name="My Agent"/>

Tag Attributes

AttributesAttribute ValueValue DescriptionComment
TargetTreeMandatory
CategoryUser defined My Selection name
Access Control List
Designs
Documents
Profile Documents
Deletion Stubs
Conflicts
ByNoteID
Detailed Type values for the Designs category can be found in the Select page.Mandatory
TypeDisplayed tree nameNot applicable when using category 'ByNoteID'
NameDisplayed document titleNot applicable when using Category 'ByNoteID'
ValueDecimal or hexadecimal value of NoteIDOnly applicable when using Category 'ByNoteID'

Detailed Description

The Focus action uses the same logic as the Select action. But unlike the Select action, this will not make a checkbox selection next to the tree entry; this will only place the focus (highlight) on the specified tree entry.

For example, <Focus Target="Tree" Category="Designs" Type="Folders" Name="($Trash)"/> would set the focus (highlight) the Folder ($Trash) as seen below.



Focus can be set at the Category level, the Type level, or the Name level.

For more information about compatible Attributes see Select.

Example Script

<?xml version="1.0" encoding="UTF-8"?>
<ytriaAutomation Application="scanEZ" ApplicationVersion="16.5">
<Load Server="ACME01/ACME">
<Load Database="mail\daltmann.nsf" Select="True"/>
</Load>
<Expand Target="Tree" Category="Designs" Type="Folders"/>
<Focus Target="Tree" Category="Designs" Type="Folders" Name="($Inbox) [en]"/>
<Select Target="ItemsGrid" lines="all"/>
</ytriaAutomation>

In the script above, the database "daltmann.nsf" on ACME01/ACME will be loaded into scanEZ. The selection tree will be expanded to allow the action Focus to place the focus (highlight) on the folder named "($Inbox) [en]". All entries within the Items grid will be selected.