Table of Contents

INTERNALOBJECT property (Common)

Description

Specifies if an object is flagged as "internal".

Property Value

A Boolean value denoting if the object is flagged as "internal".

Property Traits

DevelopmentRuntimeIndexedScaledSynthetic
N/AGetNoNoNo

Remarks

Some PS objects, such as the cell editor control in an EDITTABLE, are marked as "internal", which means that they are essentially owned and controls by the PS and are not intended to be referenced for general use outside of system calls. This property denotes if this is the case.

Example

 
//// Check the current focus and see if it's an internal object...//
  
  FocusCtrl = Get_Property( "SYSTEM", "FOCUS" )
  If BLen( FocusCtrl ) Then
     IsInternal = Get_Property( FocusCtrl, "INTERNALOBJECT" )
     If IsInternal Then
        //// Get the parent//
        FocusCtrl = Get_Property( FocusCtrl, "PARENT" )
     End
  End
 
 
 

See Also

WINDOW GETFOCUSEDCONTROL method.