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


In This Topic
    Parent Property (MouseMapper)
    In This Topic
    Gets the parent object (terminal object: IUtsTerminal, etc. as object).
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Parent As Object
    'Usage
     
    
    Dim instance As MouseMapper
    Dim value As Object
     
    value = instance.Parent
    public object Parent {get;}
    Example
    private MouseMapper mapper;
    object terminal; Can be cast to IUtsTerminal, IAlcTerminal, IT27Terminal.
                
    terminal = mapper.Parent;
    See Also