InfoConnect VBA Guide
Attachmate.Reflection.Objects.Emulation.Common Library / HostField Object / Length Property
Example
In This Topic
    Length Property (HostField)
    In This Topic
    Specifies the length of this field, including field attributes.
    Syntax
    expression.Length As Integer
    where expression is a variable that represents a HostField Object
    Remarks
    To determine the text length, use String.length on the string returned by IbmScreen.GetText(). It returns the number of elements in this field./>
    Example
    Dim host As HostField
    Dim FieldLength As Integer = host.Length
    See Also