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


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