Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.IbmHosts Library / Attachmate.Reflection.Objects.Emulation.IbmHosts Library / IbmTerminal Object / HllapiStyle Property
In This Topic
    HllapiStyle Property
    In This Topic
    Gets or sets Reflection's HLLAPI configuration. This is a numeric value.
    Syntax
    expression.HllapiStyle As Integer
    where expression is a variable that represents a IbmTerminal Object
    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 Reflection 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 &H5384.

    To use the Reflection style, assign this property a value of decimal 297 or hexadecimal &H0129.

    Note: Use "&H" to specify a hexadecimal value.

    See Also