Callback: | AEFRemoveListValuesFromListTokenNum | |||||||||||||||||||
Arguments: |
Gadget - Gadget whose value is to be modified srcGadgetPath - Path to source gadget delimiters - delimiters between tokens "###" - token number to act on |
|||||||||||||||||||
|
||||||||||||||||||||
Description: |
Given a source list, destination list, delimiter, and token number(as a string) will use the
token to remove all instances of destination lists values who has a substring match to every
instance of source list's token position. This function could be used to remove items from a
list gadget that already exist in another list gadget.
|
|||||||||||||||||||
Example: |
Button { Name = SetGadgetValue; Title = "SetGadgetValue"; /* This button will remove value from the * ListValue gadget that have substrings * matching the first token in the set of * all values in the SelectList gadget using * a delimiter of ":" */ Commands = AEFRemoveListValuesFromListTokenNum&/.../ListValues ("/.../SelectList",":","0"); } |