Edit table.
Defines how the focus rectangle is drawn around the cell with focus.
gFocusRectStyle = Get_Property( editTable,"FOCUSRECTSTYLE")
sFocusRectStyle = Set_Property( editTable,"FOCUSRECTSTYLE", value)
Values passed in Set_Property():
Value | Description |
---|---|
0 | The default dotted line. |
1 | A solid line. |
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. |
FONT property, FOCUSCELLFONT property, FOCUSCELLCOLOR property, FOCUSRECTSTYLE property, FOCUSRECTWEIGHT property, FOCUSRECTCOLOR property
Declare function Get_Property, Set_Property * Set the rectangle style to a solid line focusCellColor = Set_Property( @window : ".TABLE_1", "FOCUSRECTSTYLE", 1 )