"focusEnabled"
Indicates whether the widget accepts keyboard focus.
Synopsis
getValue(string shape,"focusEnabled", bool mode);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| mode | 
                                 TRUE = the tree widget accepts the keyboard focus. FALSE = the tree widget does not accept the keyboard focus.  | 
                        
Description
Indicates whether the widget accepts keyboard focus.
                
                Example
            
The following example returns TRUE if the TREE widget accepts keyboard focus.
main()
{
  bool foc;
  getValue("TREE1","focusEnbaled",foc);
  DebugN("Focus", foc);
}
        Assignment
Tree widget, Slider, Zoom Navigator, DpTreeView
