Field WdgType

A numeric code indicating the “class” (field or widget type) of the associated form field.

Valid Values

WdgType = {30 where FT = “0”, 31 where FT = “1”,

A numeric value ranging from 1 to the maximum available widgets according to the table below:

CodeMeaning
1Label
2Entry Field
3ToggleButton
4PushButton
5Menu Item
6Frame
7ListBox
8ComboBox
9OptionBox
10Picture
11Graphic
12Divider
13ScrollBar
14UserMessage
17OLE Object
19TabControl
20TabPage
21GridControl
22Calendar
23Camera
24TreeView
25Signature
26BarCode
27ProgressBar
28TreeView Node
29ListView
30Video
31WebPage

Field WdgCallbacks

The callback events an object can raise.

Valid Values

An integer code combining the following values:

Code

Meaning

0

No callback events are raised.

1

When the object is modified (MODIFIED).

2

When a click is applied to the object (CLICK).

4

When a double-click is applied to the object (DOUBLECLICK).

8

When a right-click is applied to the object (RIGHTCLICK).

16

When an ActiveX object raises a callback event (ACTIVEX).

32

When a click occurs on the header of the object (HEADER).

64

When the object gets the focus (GOTFOCUS).

128

When the object loses focus (LOSTFOCUS).

256

When the object loses focus after being modified (LOSTFOCUSMODIFIED).

Remarks

Only resizable windows can have menus.

Example: If the object has to raise a GotFocus event and a Click event, the WdgCallbacks would contain (2 + 64) = 66.

Field WdgCSS

Provides extra information about the object being used.

Valid Values

A character string, up to 512 characters long either blank or in JSON format.

Remarks

The WdgCSS values for the objects involved present either a blank value or a free-format JSON syntax containing additional information about the object. This extra information may be Data Dictionary fields valid only to the particular object or implemented for future use.

Example

{"icon": "c:/images/zx.ico", "smallincrement":30}

ZIM:X allows JSON data format to be retrieved by the means of the $FindJSON function if the above value would be stored in FFs.WdgCSS:

LIST FFs FORMAT $FindJSON(WdgCSS, "smallincrement")
30

See Also

$FindJSON

Field WdgAppearance

The “appearance” of an object.

Valid Values

An integer code combining the following values:

Code

Meaning

0

All clear. No settings.

1

The window has a caption.

2

The window is resizeable.

4

The window allows minimization.

8

The window allows maximization.

16

The modal behavior.

32

The window has scrollbars.

64

This window is always on top.

128

The auto-size attribute.

256

The window can be moved.

512

This window allows Microsoft Windows windows to be on top.

1024

This window allows operating system windows to be on top.

2048

The window has a status bar.

4096

The window has a system menu.

8192

This window may be clipped (become a child window) to its parent.

16384

The window has the close button.

Remarks

Only resizable windows can have menus.

Example: If the window has a caption, is resizable and has a close button, the value would be (1 + 2 + 16384) = 16387.

Predefined Color Constants

These numeric constants are in Zim’s data dictionary. They can be used instead of the number value to make your code more readable.

Color Constant NameValueColor Constant NameValue
Inherited from the parent0cInactiveCaptionTxt19
Black1cWindowText20
Blue2cWindowFrame21
Green3cScrollBarColor22
Cyan4cMenuTextColor23
Red5cMenuColor24
Magenta6cInactiveCaption25
Brown7cInactiveBorder26
LightGrey8cHighlightText27
DarkGrey9cHighlightColor28
LightBlue10cGreyText29
LightGreen11cCaptionText30
LightCyan12cButtonText31
LightRed13cButtonShadow32
LightMagenta14cButtonFace33
Yellow15cWindowBackground34
White16cAppWorkSpace35
cWindowColor17cActiveCaption36
cButtonHighlight18cActiveBorder37

Field DM

The “display mode” of an object. Indicates the display attributes to be used for an object.

Valid Values

A 6-character string, containing one or more codes as shown in the table below:

Code

Meaning

N

Normal intensity

I

Invisible

R

Reverse video

S

Suppress data

H

High intensity

L

Italic

U

Underlined

T

Strikethrough

B

Blink

X

Inherit font attributes

Remarks

Meaningful combinations of display attributes are acceptable. Your terminal may not accept certain combinations.

The attributes S, L, and T are not applicable to windows.

See Also

WdgFont, WdgFontSize

Field WdgItems

Stores initial values for lists. The initial list of values for a combo box or list box are stored in WdgItems.

Valid Values

A 256-character string, containing a list of values separated by semicolons

Remarks

If the length of any item in the list exceed the field’s FieldLen, then that item is truncated.

Leading spaces are stripped from all items.

Example 1

Red;Green;Blue

Example 2

If the semicolon must be used as data, it should be preceded by the escape character ():

period (.);comma (,);semicolon (;)

See Also

FieldLen, FORM SET LIST (Language Reference)

Field WdgScrollBars

Indicates whether a form field or a window has attached scroll bars.

Valid Values

An integer code, as shown in the tables that follow.

For FormFields

Code

Meaning

0

None (DEFAULT)

1

Horizontal

2

Vertical

3

Both

For Windows

Code

Meaning

1

Yes (the window can have scroll bars) (DEFAULT)

2

No (the window may not have scroll bars)

Field VR

“Value required” status of a form field. Indicates whether a value is required in this form field.

Valid Values

A 1-character code, as shown in the table below:

Code

Meaning

I

Immediate. This form field must be completed before focus can move elsewhere in the form

N

No. This form field need not be completed before control can return to the application program

Y

Yes. This form field must be completed before control can return to the application program on callback or scrolling events; on other events, control returns, but an incomplete required field is noted in Event system variables

Remarks

If the VR of a form field is I, and an accelerator key is pressed before the form field is assigned a valid value, an error message appears and focus returns to the form field.

If a form field has an IT setting of A and a VR setting of I, the VR setting takes precedence: the form field must be assigned a value before an event can cause a callback to the application program.

See Also

ValRule, VA

 

Field IT

Indicates how the form field responds to a LostFocus event (“transmit-on-exit” status).

Valid Values

A 1-character code, as shown in the table below:

Code

Meaning

N

(DEFAULT) No response

Y

Control returns to the application program if the form field was modified between the GotFocus and LostFocus events (LostFocusModified)

A

Control always returns to the application program on a LostFocus event

X

Control returns to the application program both on a LostFocusModified and a LostFocus event. (LostFocusModified takes precedence.)

Remarks

The value in the form field must meet the associated validation rule and minimum length requirement before control can revert to the application program on a LostFocus event.

See Also

MinLen, ValRule

pt_BRPortuguese