ComponentOne Input for WinForms
C1.Win.C1Input.4.5.2 Assembly / C1.Win.C1Input Namespace / CharHelper Class / IsFullWidth Method / IsFullWidth(String,Int32) Method
A string.
The character position in s.

In This Topic
    IsFullWidth(String,Int32) Method
    In This Topic
    Indicates whether the character at the specified position in the specified string is a full width character. Usually CJK characters are considers as full widths.
    Syntax
    'Declaration
     
    Public Overloads Shared Function IsFullWidth( _
       ByVal s As String, _
       ByVal index As Integer _
    ) As Boolean
    public static bool IsFullWidth( 
       string s,
       int index
    )

    Parameters

    s
    A string.
    index
    The character position in s.

    Return Value

    true if the character at position index in s is a full width character; otherwise, false.
    See Also