|
|
|
|
El Exist Property determina si el elemento de un array asociativo existe.
// Associative array of integers // indexed on strings and with duplicates aaIDPerCustomer is associative array of int // Add the identifier of customer "A" aaIDPerCustomer["A"] = 55 // Add the identifier of customer "B" aaIDPerCustomer["B"] = 321 IF aaIDPerCustomer["A"]..Exist = True THEN Info("At least one element A exists") END
Sintaxis
<Result> = <Element used>.Exist
<Result>: booleano - True si el elemento especificado existe (no está vacío),
- False en caso contrario.
<Element used>: Elemento de una array asociativa Nombre del elemento a utilizar (elemento de la asociación array). Observaciones El Exist Property determina si el elemento de un array asociativo existe. - Para un array asociativo sin duplicados, el Exist Property es set a True si el elemento existe.
- Para un array asociativo con duplicados, el Exist Property es set a True si existe al menos un elemento.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|