Saltar para o conteúdo principal
Version: v20 BETA

Objetos


Tipo

CONFIGURAÇÃO OBRIGATÓRIA

Esta propriedade designa o tipo de objecto formulárioactivo ou inactivo.

Gramática JSON

NomeTipo de dadosValores possíveis
typestring"button", "buttonGrid", "checkbox", "combo", "dropdown", "groupBox", "input", "line", "list", "listbox", "oval", "picture", "pictureButton", "picturePopup", "plugin", "progress", "radio", "rectangle", "ruler", "spinner", "splitter", "stepper", "subform", "tab", "text", "view", "webArea", "write"

Objectos suportados

4D View Pro area - 4D Write Pro area - Button - Button Grid - Check Box - Combo Box - Drop-down List - Group Box - Hierarchical List - List Box - List Box Column - List Box Footer - List Box Header - Picture Button - Picture Pop-up Menu - Plug-in Area - Progress indicator - Radio Button -Spinner - Splitter - Static Picture - Stepper - Subform - Tab control - Text Area - Web Area


Nome de objeto

Each active form object is associated with an object name. Each object name must be unique.

Object names are limited to a size of 255 bytes.

When using 4D’s language, you can refer to an active form object by its object name (for more information about this, refer to Object Properties in the 4D Language Reference manual).

For more information about naming rules for form objects, refer to Identifiers section.

Gramática JSON

NomeTipo de dadosValores possíveis
namestringAny allowed name which does not belong to an already existing object

Objectos suportados

4D View Pro area - 4D Write Pro area - Button - Button Grid - Check Box - Combo Box - Drop-down List - Group Box - Hierarchical List - List Box - List Box Column - List Box Footer - List Box Header - Picture Button - Picture Pop-up Menu - Plug-in Area - Progress indicator - Spinner - Splitter - Static Picture - Stepper - Radio Button - Subform - Tab control - Text Area - Web Area


Guardar valor

This property is available when the Save Geometry option is checked for the form.

This feature is only supported for objects that contribute to the overall geometry of the form. For example, this option is available for check boxes because their value can be used to hide or display additional areas in the window.

Here is the list of objects whose value can be saved:

ObjetoValor guardado
Caixa de selecçãoValue of associated variable (0, 1, 2)
Lista suspensa ou drop downNúmero da linha seleccionada
Botão rádioValue of associated variable (1, 0, True or False for buttons according to their type)
Tab controlNumber of selected tab

Gramática JSON

NomeTipo de dadosValores possíveis
memorizeValuebooleantrue, false

Objectos suportados

Check Box - Drop-down List - Radio Button - Tab control


Variável ou expressão

See also Expression for Selection and collection type list box columns.

This property specifies the source of the data. Each active form object is associated with an object name and a variable name. The variable name can be different from the object’s name. In the same form, you can use the same variable several times while each object name must be unique.

Variable name size is limited to 31 bytes. See Identifiers section for more information about naming rules.

The form object variables allow you to control and monitor the objects. For example, when a button is clicked, its variable is set to 1; at all other times, it is 0. The expression associated with a progress indicator lets you read and change the current setting.

Variables or expressions can be enterable or non-enterable and can receive data of the Text, Integer, Numeric, Date, Time, Picture, Boolean, or Object type.

Gramática JSON

NomeTipo de dadosValores possíveis
dataSourcestring, or string array
  • 4D variable, field name, or arbitrary complex language expression.
  • Empty string for dynamic variables.
  • String array (collection of array names) for a hierarchical listbox column]
  • Expressões

    You can use an expression as data source for an object. Any valid 4D expression is allowed: simple expression, formula, 4D function, project method name or field using the standard [Table]Field syntax. The expression is evaluated when the form is executed and reevaluated for each form event. Note that expressions can be assignable or non-assignable.

    If the value entered corresponds to both a variable name and a method name, 4D considers that you are indicating the method.

    Variáveis dinâmicas

    You can leave it up to 4D to create variables associated with your form objects (buttons, enterable variables, check boxes, etc.) dynamically and according to your needs. To do this, simply leave the "Variable or Expression" property (or dataSource JSON field) blank.

    When a variable is not named, when the form is loaded, 4D creates a new variable for the object, with a calculated name that is unique in the space of the process variables of the interpreter (which means that this mechanism can be used even in compiled mode). This temporary variable will be destroyed when the form is closed. In order for this principle to work in compiled mode, it is imperative that dynamic variables are explicitly typed. There are two ways to do this:

    • You can set the type using the Expression type property.
    • You can use a specific initialization code when the form is loaded that uses, for example, the VARIABLE TO VARIABLE command:
     If(Form event=On Load)
    C_TEXT($init)
    $Ptr_object:=OBJECT Get pointer(Object named;"comments")
    $init:=""
    VARIABLE TO VARIABLE(Current process;$Ptr_object->;$init)
    End if

    In the 4D code, dynamic variables can be accessed using a pointer obtained with the OBJECT Get pointer command. Por exemplo:

      // assign the time 12:00:00 to the variable for the "tstart" object
    $p :=OBJECT Get pointer(Object named;"tstart")
    $p->:=?12:00:00?

    There are two advantages with this mechanism:

    • On the one hand, it allows the development of "subform" type components that can be used several times in the same host form. Let us take as an example the case of a datepicker subform that is inserted twice in a host form to set a start date and an end date. This subform will use objects for choosing the date of the month and the year. It will be necessary for these objects to work with different variables for the start date and the end date. Letting 4D create their variable with a unique name is a way of resolving this difficulty.
    • On the other hand, it can be used to limit memory usage. In fact, form objects only work with process or inter-process variables. However, in compiled mode, an instance of each process variable is created in all the processes, including the server processes. This instance takes up memory, even when the form is not used during the session. Therefore, letting 4D create variables dynamically when loading the forms can save memory.

    List box array

    For an array list box, the Variable or Expression property usually holds the name of the array variable defined for the list box, and for each column. However, you can use a string array (containing arrays names) as dataSource value for a list box column to define a hierarchical list box.

    Objectos suportados

    4D View Pro area - 4D Write Pro area - Button - Button Grid - Check Box - Combo Box - Drop-down List - Hierarchical List - List Box - List Box Column - List Box Header - List Box Footer - Picture Pop-up Menu - Plug-in Area - Progress indicator - Spinner - Splitter - Stepper - Tab control - Subform - Radio Button - Web Area


    Tipo de expressão

    This property is called Data Type in the Property List for selection and collection type list box columns and for Drop-down Lists associated to an object or an array.

    Specify the data type for the expression or variable associated to the object. Note that main purpose of this setting is to configure options (such as display formats) available for the data type. It does not actually type the variable itself. Em vista da compilação de um banco de dados, deve utilizar os comandos da linguagem 4D do tema Compilador.

    However, this property has a typing function in the following specific cases:

    • Dynamic variables: you can use this property to declare the type of dynamic variables.
    • List Box Columns: this property is used to associate a display format with the column data. The formats provided will depend on the variable type (array type list box) or the data/field type (selection and collection type list boxes). The standard 4D formats that can be used are: Alpha, Numeric, Date, Time, Picture and Boolean. The Text type does not have specific display formats. Any existing custom formats are also available.
    • Picture variables: you can use this menu to declare the variables before loading the form in interpreted mode. Specific native mechanisms govern the display of picture variables in forms. These mechanisms require greater precision when configuring variables: from now on, they must have already been declared before loading the form — i.e., even before the On Load form event — unlike other types of variables. To do this, you need either for the statement C_PICTURE(varName) to have been executed before loading the form (typically, in the method calling the DIALOG command), or for the variable to have been typed at the form level using the expression type property. Otherwise, the picture variable will not be displayed correctly (only in interpreted mode).

    Gramática JSON

    NomeTipo de dadosValores possíveis
    dataSourceTypeHintstring
  • standard objects: "integer", "boolean", "number", "picture", "text", date", "time", "arrayText", "arrayDate", "arrayTime", "arrayNumber", "collection", "object", "undefined"
  • columnas list box: "boolean", "number", "picture", "text", date", "time". Array/selection list box only: "integer", "object"
  • Objectos suportados

    Check Box - Combo Box - Drop-down List - Input - List Box Column - List Box Footer - Plug-in Area - Progress indicator - Radio Button - Ruler - Spinner - Stepper - Subform - Tab Control


    Classe CSS

    A list of space-separated words used as class selectors in css files.

    Gramática JSON

    NomeTipo de dadosValores possíveis
    "class"stringOne string with CSS name(s) separated by space characters

    Objectos suportados

    4D View Pro area - 4D Write Pro area - Button - Button Grid - Check Box - Combo Box - Drop-down List - Group Box - Hierarchical List - List Box - Picture Button - Picture Pop-up Menu - Plug-in Area - Radio Button - Static Picture - Subform - Text Area - Web Area


    Seleção de entidade ou coleção

    To use collection elements or entities to define the row contents of the list box.

    Enter an expression that returns either a collection or an entity selection. Usually, you will enter the name of a variable, a collection element or a property that contain a collection or an entity selection.

    The collection or the entity selection must be available to the form when it is loaded. Each element of the collection or each entity of the entity selection will be associated to a list box row and will be available as an object through the This command:

    • if you used a collection of objects, you can call This in the datasource expression to access each property value, for example This.\<propertyPath>.
    • if you used an entity selection, you can call This in the datasource expression to access each attribute value, for example This.\<attributePath>.

      If you used a collection of scalar values (and not objects), 4D allows you to display each value by calling This.value in the datasource expression. However in this case you will not be able to modify values or to access the current ite object (see below) Note: For information about entity selections, please refer to the ORDA chapter.

    Gramática JSON

    NomeTipo de dadosValores possíveis
    dataSourcestringExpression that returns a collection or an entity selection.

    Objectos suportados

    List Box


    Fonte de dados

    Specify the type of list box.

    • Arrays(default): use array elements as the rows of the list box.
    • Current Selection: use expressions, fields or methods whose values will be evaluated for each record of the current selection of a table.
    • Named Selection: use expressions, fields or methods whose values will be evaluated for each record of a named selection.
    • Collection or Entity Selection: use collection elements or entities to define the row contents of the list box. Note that with this list box type, you need to define the Collection or Entity Selection property.

    Gramática JSON

    NomeTipo de dadosValores possíveis
    listboxTypestring"array", "currentSelection", "namedSelection", "collection"

    Objectos suportados

    List Box


    Tipo de plug-in

    Name of the plug-in external area associated to the object. Plug-in external area names are published in the manifest.json file of the plug-in.

    Gramática JSON

    NomeTipo de dadosValores possíveis
    pluginAreaKindstringName of the plug-in external area (starts with a % character)

    Objectos suportados

    Área Plug-in


    Radio Group

    Enables radio buttons to be used in coordinated sets: only one button at a time can be selected in the set.

    Gramática JSON

    NomeTipo de dadosValores possíveis
    radioGroupstringNome do grupo rádio

    Objectos suportados

    Botão rádio


    Título

    Allows inserting a label on an object. The font and the style of this label can be specified.

    You can force a carriage return in the label by using the \ character (backslash).

    To insert a \ in the label, enter "\\".

    By default, the label is placed in the center of the object. When the object also contains an icon, you can modify the relative location of these two elements using the Title/Picture Position property.

    Para a tradução do banco de dados, pode introduzir uma referência XLIFF na área do título de um botão (ver Apêndice B: arquitetura XLIFF).

    Gramática JSON

    NomeTipo de dadosValores possíveis
    textstringqualquer texto

    Objectos suportados

    Button - Check Box - List Box Header - Radio Button - Text Area


    Cálculo de variáveis

    This property sets the type of calculation to be done in a column footer area.

    Ó cálculo de rodapés também pode ser definido com o comando 4D LISTBOX SET FOOTER CALCULATION.

    There are several types of calculations available. The following table shows which calculations can be used according to the type of data found in each column and indicates the type automatically affected by 4D to the footer variable (if it is not typed by the code):

    CálculoNumTextDateHoraBoolPictfooter var type
    MínimoXXXXXIgual ao tipo de coluna
    MáximoXXXXXIgual ao tipo de coluna
    SomaXXXIgual ao tipo de coluna
    ContagemXXXXXXLongint
    AverageXXReal
    Desvio padrão(*)XXReal
    Variância(*)XXReal
    Soma dos quadrados(*)XXReal
    Personalizado ("none")XXXXXXQualquer

    (*) Only for array type list boxes.

    Only declared or dynamic variables can be used to display footer calculations. Other kinds of expressions such as Form.value are not supported.

    Note that the calculation does not take the shown/hidden state of list box rows into account. If you want to restrict a calculation to only visible rows, you must use a custom calculation.

    Null values are not taken into account for any calculations.

    If the column contains different types of values (collection-based column for example):

    • Average and Sum only take numerical elements into account (other element types are ignored).
    • Minimum and Maximum return a result according to the usual type list order as defined in the collection.sort() function.

    Using automatic calculations in footers of columns based upon expressions has the following limitations:

    • This property is called Data Type in the Property List for Selection and collection type list box columns.
    • list box columns: "boolean", "number", "picture", "text", date" (array/selection list box only) "integer", "time", "object"
    • footers of Collection and Entity selection list boxes. Precisa utilizar cálculos personalizados.

    When Custom ("none" in JSON) is set, no automatic calculations are performed by 4D and you must assign the value of the variable in this area by programming.

    Gramática JSON

    NomeTipo de dadosValores possíveis
    variableCalculationstring"none", "minimum", "maximum", "sum", "count", "average", "standardDeviation", "variance", "sumSquare"

    Objectos suportados

    Rodapé do List Box