====== FOCUSRECTCOLOR Property ====== ==== 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|FONT property]], [[focuscellfont|FOCUSCELLFONT property]], [[focuscellcolor|FOCUSCELLCOLOR property]], [[focusrectstyle|FOCUSRECTSTYLE property]], [[focusrectweight|FOCUSRECTWEIGHT property]], [[focusrectcolor|FOCUSRECTCOLOR property]] ==== Example ==== Declare function Get_Property, Set_Property $Insert Colors * Set the rectangle color to red. focusRectColor = Set_Property( @window : ".TABLE_1", "FOCUSRECTCOLOR", Red$ )