Applies to
Edit table.
Description
Defines the color of the rectangle drawn around the cell with focus.
Usage
gFocusRectColor = Get_Property (editTable,"FOCUSRECTCOLOR")
sFocusRectColor = Set_Property (editTable,"FOCUSRECTCOLOR", color)
Remarks
Values passed in Set_Property():
Value | Description |
---|---|
color | An RGB value. The default value is 0 (black). |
Returns
Values returned by Get_Property and Set_Property
Value | Description |
---|---|
gFocusRectColor | Returns the current rectangle color. |
sFocusRectColor | Returns the rectangle color of the cell prior to the setting of the new color. |
See Also
FONT property, FOCUSCELLFONT property, FOCUSCELLCOLOR property, FOCUSRECTSTYLE property, FOCUSRECTWEIGHT property
Example
Declare function Get_Property, Set_Property $Insert Colors * Set the rectangle color to red. focusRectColor = Set_Property( @window : ".TABLE_1", "FOCUSRECTCOLOR", Red$ )