InfoConnect API Guide
Attachmate.Reflection.Emulation.IbmHosts Namespace / IIbmTerminal Interface / HllapiStyle Property


In This Topic
    HllapiStyle Property
    In This Topic
    Gets or sets the InfoConnect HLLAPI configuration. This is a numeric value.
    Syntax
    'Declaration
     
    
    Property HllapiStyle As Integer
    'Usage
     
    
    Dim instance As IIbmTerminal
    Dim value As Integer
     
    instance.HllapiStyle = value
     
    value = instance.HllapiStyle
    int HllapiStyle {get; set;}
    Exceptions
    ExceptionDescription
    This exception is thrown when you modify a property that was secured via the Permissions Manager or that can only be modified by an Administrator.
    Remarks
    The possible numeric values for this style are "bit masks" that contain separate bits of information about the InfoConnect HLLAPI configuration. To derive a value, add the value for each of the bits you want to turn on. For example, to turn on the first bit (decimal value = 1), the fourth bit (decimal value = 8), and the 10th bit (decimal value = 512), add these three numbers (1 + 8 + 512 = 521) and use the total as the numeric value.

    The Extra! style (the default value), is equivalent to decimal 21380 and hexadecimal 0x5384.

    To use the InfoConnect style, assign this property a value of decimal 297 or hexadecimal 0x0129.

    See Also