Callback: | AEFAppendString |
Arguments: |
Gadget - Gadget whose value is to be modified String - string to append to gadget's value |
|
|
Description: | AEFAppendString will take the supplied string and append it to the gadget passed in the first argument. Multiple calls to AEFAppendString can be used to build complex values with delimiters for single valued gadgets. For List gadgets the string is appended to the list of available items. |
Example: |
Button { Name = AppendColon; Title = "AppendColon"; /* This button will append a colon to a gadget * called FinalValue */ Commands = AEFAppendString&/.../FinalValue(":"); } |
NOTE: | If the destination List is sorted, inserting at the end or the beginning may make no difference. |