Applies to
Edit table.
Description
Defines how the focus rectangle is drawn around the cell with focus.
Usage
gFocusRectStyle = Get_Property (editTable,"FOCUSRECTSTYLE")
sFocusRectStyle = Set_Property (editTable,"FOCUSRECTSTYLE", value)
Remarks
Values passed in Set_Property():
Value | Description |
---|---|
0 | The default dotted line. |
1 | A solid line. |
Returns
Values returned by Get_Property and Set_Property
Value | Description |
---|---|
gFocusRectStyle | Returns the current rectangle style. |
sFocusRectStyle | Returns the style of the cell prior to the setting of the new style. |
See Also
FONT property, FOCUSCELLFONT property, FOCUSCELLCOLOR property, FOCUSRECTWEIGHT property, FOCUSRECTCOLOR property
Example
Declare function Get_Property, Set_Property * Set the rectangle style to a solid line focusCellColor = Set_Property( @window : ".TABLE_1", "FOCUSRECTSTYLE", 1 )