- Copying and pasting one feature into the expression field
- Copying and pasting two different features into the expression field
- Copying and pasting a selection of multiple options into the expression field
- Copying and pasting a feature and one of its options into the expression field
- Copying and pasting a feature and multiple of its options into the expression field
- Copying and pasting a nested feature and its option
- Copying and pasting an optional feature with an option
Copy and paste feature and option codes via Product View/Navigator
1. Copying and pasting one feature into the expression field
Result: The feature's code will be pasted with a .code appended at the end
2. Copying and pasting two different features into the expression field
Result: The feature's code with .code will be pasted with an and operator to connect them
3. Copying and pasting a selection of multiple options into the expression field
Result: Option codes for multi-selection should be wrapped in { } and be sorted according the tree structure from top down
4. Copying and pasting a feature and one of its options into the expression field
Result: The expression will be generated as a standard expression,
F1.code = "A"
5. Copying and pasting a feature and multiple of its options into the expression field
Result: The expression will be generated as a standard collection expression F1.code in { "A", "B")
6. Copying and pasting an optional feature with an option
Result: The expression will be generated as a standard optional expression and checked
F1.O1.checked = true
7. Copying and pasting a nested feature and its option
Result: The expression will be generated as a nested feature expression F1.F2.code = “O1”
Comments
0 comments
Please sign in to leave a comment.