Description
Defines a predefined or context-related search.
Namespace
xmlns:l="http://www.teradp.com/schemas/GN4/1/Shell/Presentation"
Members
Name | use it as parameter for resultView.Navigate command. |
SearchNode | Defines variable search conditions. |
Example
Remarks
A BaseQuery can contain zero or more ExtendedConditions, each one for a related search. ExtendedConditions typically appear in the parent BaseQuery under SearchList.
Each ExtendedConditions is defined by its name, that has to be unique within the parent base query.
An extended condition contains one SearchNode node.Calling an extended condition from a script
The script calls the extended condition with name="linked". The "pageIds" parameter corresponds to the name of the VariableSearchNode within <Ids of <List that belongs to the child <SearchNode.
Public class Fred4MainAddIn
.
.
.
" <summary>Shows all the objects linked to the selected pages.</summary>
<ShellCommand(CanExecute:="Ena_HasSelectedPageObjects")> _
Public Sub ShowObjectsLinkedToPage()
ShowExtendedConditionsOnSelection("EditionShell", _
"linked", "pageIds", My.Resources.IDS_EXTCOND_LINKED)
End Sub
See also