Modify Card |
|||
Arguments | Element | the índex of a single element to select (the index number of the first element is 1) | |
arrElements | an array of element indices.
If the elements 1 and 2 of a multi-element airfoil are to be selected, the
required array of indexed can be created by using the following code arr =
new Array(2); Modify.Select(new Array(1,2)); // shorter alternative to create and populate the array |
||
Note that the short
alternative form is not suitable to create and populate a single element
array. The following code would raise an error message because it will just create an empty array of 1 element size. Modify.Select(new Array(1)); // ERROR |
|||
Description | Selects airfoil elements | ||
Remarks | You can select an arbitrary number
of elements. The element numbers cannot be higher than the element count
of the airfoil. Performs the same action as a selection in the "Elements" list box. |