|
|
|
|
|
- Looper, List Box, Combo Box y control Tabla
- control Gráfico
- Utilización de la Property vacía en una reporte
- Property vacía utilizada en el arrays y en el arrays asociativo
- Límites
Empty se utiliza para saber si: - un looper, tabla, list box o control Combo Box está vacío. El control puede ser un control archivo de datos o un control de memoria.
- un control Gráfico no contiene ninguna serie.
- un control reporte está vacío (control relacionado a una posición).
- una array (o una array asociativa) no contiene ningún elemento.
- un elemento de una array asociativa existe o no.
- una cola, una lista o una pila no contiene ningún elemento.
Para un reporte, la propiedad Empty se utiliza para determinar si el valor de un elemento vinculado a un control se ha especificado para el Record actual.
// This control becomes visible // if the value of the item linked to the "EDT_Phone" control // is not specified for the current record IF EDT_Phone.Empty = False THEN EDT_Phone.Visible = False END
// If the "TABLE_CustomerTable" control is empty, // add a new row into this control IF TABLE_CustomerTable.Empty = True THEN TableAddLine(TABLE_CustomerTable, "Davis", "Peter") END
Sintaxis
<Result> = <Element used>.Empty
<Result>: booleano - True si el elemento especificado está vacío,
- False en caso contrario.
<Element used>: Tipo de elemento Nombre del elemento a utilizar. Observaciones Looper, List Box, Combo Box y control Tabla El Empty Property se utiliza para determinar si el control está vacío (el Empty Property devuelve True). Esta Property se aplica a los controles Table, TreeView Table, List Box, ListView, Combo Box y Looper (ver Límites). Property vacía utilizada en el arrays y en el arrays asociativo El Empty Property se utiliza para determinar: - Si un array o array asociativo está vacío (Empty Property devuelve True).
Ejemplo:
// Associative array of file sizes aaFileSize is associative array of int ... IF aaFileSize.Empty = False THEN Info("The array contains at least one element") END
- La existencia o no de un elemento de una array asociativa. Para un array asociativo sin duplicados, el Empty Property es set a False si el elemento existe. Para un array asociativo con duplicados, el Empty Property es set a False si existe al menos un elemento.
Ejemplo:
// 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"].Empty = False THEN Info("At least one element A exists") END
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|