Skip to content

Field Properties - Box Tab - Style

The line style can be set to one of the line styles shown in the combobox.

The setting can also be defined conditionally by using a function with one of the line style constants.

An example of such a function is:

Dim gbImportant as global

If (gbImportant) then
    return drLineSolid
else
    return drLineNone
end