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


In This Topic
    Sounds Property (Theme)
    In This Topic
    Gets the sounds object associated with the theme.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Sounds As IThemeSounds
    'Usage
     
    
    Dim instance As Theme
    Dim value As IThemeSounds
     
    value = instance.Sounds
    public IThemeSounds Sounds {get;}
    Example
    private Theme theme;
    private IThemeSounds sound;
    //Gets the theme sound.
    sound = theme.Sounds;
    See Also