|
- Inserting an element into an array
- Inserting an element into an advanced array property
- Inserting an element into a list
- Inserting an array
- Inserting a list
- Use conditions
- Miscellaneous
<Variable>.Insert (Function) In french: <Variable>.Insère
MyArray is array of 2 strings MyArray.Insert(1, "WINDEV") MyArray.Insert(2, "WEBDEV") MyArray.Insert(3, "WINDEV and WEBDEV") // Display the content of 3rd element Trace(MyArray[3]) // Displays "WINDEV and WEBDEV"
MyArray is array of 2 strings MyArray[1] = "WINDEV" MyArray[2] = "WEBDEV" MyArray.Insert(3, "WINDEV and WEBDEV") // Display the content of 3rd element Trace(MyArray[3]) // Displays "WINDEV and WEBDEV"
// Associative array Last Name - First Name aaLastNameFirstName is associative array of strings aaLastNameFirstName.Insert( "Smith", "Tommy") aaLastNameFirstName.Insert("Montgomery", "Julia")
Syntax
Inserting an element into an array or into an advanced array property Hide the details
<WLanguage array>.Insert(<Insertion subscript> [, <Element value>])
<WLanguage array>: Array Name of Array variable to use. <Insertion subscript>: Integer Subscript where the element will be inserted into the array. From this subscript, all elements will be moved by 1 element. If <Insertion subscript> is equal to the number of elements in the array +1, the element is added at the end of array (equivalent to <Array/List variable>.Add or <Variable>.Add). A WLanguage error occurs if <Insertion subscript> is greater than the number of elements in the array +1. <Element value>: Any type, optional Element that will be inserted into the array at the specified position. If this parameter is not specified, the array is enlarged with the default value of the type of the other array elements.
Inserting an element into an associative array Hide the details
<WLanguage array>.Insert(<Element key> , <Element value>)
<WLanguage array>: Array Name of Array variable to use. This array must be a one-dimensional array. <Element key>: Type of key in the associative array Value of key for which the element will be inserted. In an associative array without duplicate, a WLanguage error occurs if the element already exists. <Element value>: Any type Element that will be inserted into the specified array.
Inserting an array into an array Hide the details
<WLanguage array>.Insert(<Insertion subscript> [, <WLanguage array to insert>])
<WLanguage array>: Array Name of Array variable to use. <Insertion subscript>: Integer Subscript where the element will be inserted into the array. From this subscript, all elements will be moved by 1 element. If <Insertion subscript> is equal to the number of elements in the array +1, the element is added at the end of the array (equivalent to <Array/List variable>.Add). A WLanguage error occurs if <Insertion subscript> is greater than the number of elements in the array +1. <WLanguage array to insert>: Optional array Array that will be inserted into <Array name>. This insertion will be performed at the specified insertion subscript. Remarks Inserting an element into an array When <Variable>.Insert is called: - the array is automatically enlarged to receive the new element.
- the element is converted (if necessary) into the type of the other array elements.
When declaring an array of N elements, this array contains N empty elements. For example, the array declared below contains 3 empty strings.
MyArray is array of 3 strings
When inserting an element ( <Variable>.Insert), this element is automatically inserted among the elements already found in the array. In our example, the array will contain 4 elements once the insertion is performed. Inserting an element into an advanced array property When <Variable>.Insert is called: - the advanced variable must be created.
- the advanced type must have an enumerator of modifiable collection type.
- the advanced type is automatically enlarged to receive the new elements.
- the element is initialized with the value passed in parameter. If no value is passed in parameter, the element is initialized with the default value of the type of the array elements.
Inserting an element into a list When <Variable>.Insert is called: - the list is automatically enlarged to receive the new element.
- the element is converted (if necessary) into the type of the other list elements.
Inserting an array When <Variable>.Insert is called: - the array is automatically resized to receive the new elements. The elements of <WLanguage array to insert> are added at the position specified in <Array name>.
- the two arrays must have the same type.
- the arrays must have the same dimension.
- the values of array dimensions (except for the first one) must be identical.
Inserting a list When <Variable>.Insert is called: - the list is automatically enlarged to receive the new elements. The elements of <WLanguage list to insert> are added at the specified position.
- the two lists must have the same type.
Use conditions This function can be used with the structures. In this case, you must: - Declare a variable (same type as the structure).
- Initialize each member.
- Pass the structure variable in parameter to <Variable>.Insert.
This function cannot be used on: - non-created arrays,
- fixed arrays.
This page is also available for…
|
|
|
| |
| Click [Add] to post a comment |
|
| |
|
| |
| |
| |
| |
| |
| |
| | |
| |