InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / ScreenCharacter Class / CharWidth Property
Example


In This Topic
    CharWidth Property (ScreenCharacter)
    In This Topic
    Gets the character column width. This value can be used when incrementing through a data cell array.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property CharWidth As Integer
    'Usage
     
    
    Dim instance As ScreenCharacter
    Dim value As Integer
     
    value = instance.CharWidth
    public int CharWidth {get;}

    Property Value

    The character column width: SBCS = 1, DBCS = 2.
    Example
    private ScreenCharacter screen;
    //Get CharWidth.
    int charWidth = screen.CharWidth;
    See Also