InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / Theme Class / Parent Property
Example


In This Topic
    Parent Property (Theme)
    In This Topic
    Gets the parent object. The parent is the terminal object.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Parent As Object
    'Usage
     
    
    Dim instance As Theme
    Dim value As Object
     
    value = instance.Parent
    public object Parent {get;}
    Example
    private Theme theme;
    private IUtsTerminal terminal;
    //Get the theme parent.
    terminal = theme.Parent;
    See Also