Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi to everybody.
Please could you help me with Selectionset Functionality Filter.
I would like to search two different string with selection set, in case adding wild cards.
The main issue concern the LOGIC OPERATOR "OR" to be used or not.
Thank you
Set MySelection = ThisDrawing.SelectionSets.Add("PP1")
filterType(0) = -4
filterData(0) = "<OR"
filterType(1) = 0
filterData(1) = "Text"
filterType(2) = 2
filterData(2) = "STRING 1"
filterType(3) = 0
filterData(3) = "Text"
filterType(4) = 2
filterData(4) = "STRING 2"
filterType(5) = -4
filterData(5) = "OR>"
MySelection.Select acSelectionSetAll, , , filterType, filterData
Solved! Go to Solution.