Field Properties - Line 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 that utilizes 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