Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WDESIGNER and version 24.0
Syntax
Code Block
languagenone
apply operationName (element [, additionalParameter]) to destinationArrayName
Semantics

Applies an action script operation or class operation (operationName) to each element of an array (destinationArrayName).
element is a keyword and denotes any single element of destinationArrayName.

SubstitutablesoperationNameCan be any action script operation or class operation name.
anArray, destinationArrayNameCan be any variable or object attribute having the type Array.
Examples
Code Block
languagenone
set changedElements = apply concat(element, "_x") to inputContainer.myList;
set normalizedElements = apply normalizeSpaces(element) to inputContainer.myList;
apply element.calculateAmmount() to exchangesList;
rp
Panel
titleRelated Pages: