Callback: | AEFPrependString |
Arguments: |
Gadget - Gadget whose value is to be modified string - string to prepend |
|
|
Description: | AEFPrependString will take the supplied string and prepend it to the gadget passed in the first argument. Multiple calls to AEFPrependString can be used to build complex values with delimiters for single valued gadgets. For List gadgets the string is prepended to the list of available items. |
Example: |
Button { Name = PrependColon; Title = "PrependColon"; /* This button will prepend 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. |