ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Data.VBFunctionLib Assembly / GrapeCity.Enterprise.Data.VisualBasicReplacement Namespace / VbStrConv Enumeration

In This Topic
    VbStrConv Enumeration
    In This Topic
    Indicates which type of conversion to perform when calling the StrConv function.
    Syntax
    'Declaration
     
    Public Enum VbStrConv 
       Inherits System.Enum
    public enum VbStrConv : System.Enum 
    Members
    MemberDescription
    HiraganaConverts Katakana characters in the string to Hiragana characters. Applies to Japanese locale only. This member is equivalent to the Visual Basic constant vbHiragana.
    KatakanaConverts Hiragana characters in the string to Katakana characters. Applies to Japanese locale only. This member is equivalent to the Visual Basic constant vbKatakana.
    LinguisticCasingConverts the string from file system rules for casing to linguistic rules. This member is equivalent to the Visual Basic constant vbLinguisticCasing.
    LowercaseConverts the string to lowercase characters. This member is equivalent to the Visual Basic constant vbLowerCase.
    NarrowConverts wide (double-byte) characters in the string to narrow (single-byte) characters. Applies to Asian locales. This member is equivalent to the Visual Basic constant vbNarrow.
    NonePerforms no conversion.
    ProperCaseConverts the first letter of every word in the string to uppercase. This member is equivalent to the Visual Basic constant vbProperCase.
    SimplifiedChineseConverts the string to Simplified Chinese characters. This member is equivalent to the Visual Basic constant vbSimplifiedChinese.
    TraditionalChineseConverts the string to Traditional Chinese characters. This member is equivalent to the Visual Basic constant vbTraditionalChinese.
    UppercaseConverts the string to uppercase characters. This member is equivalent to the Visual Basic constant vbUpperCase.
    WideConverts narrow (single-byte) characters in the string to wide (double-byte) characters. Applies to Asian locales. This member is equivalent to the Visual Basic constant vbWide.
    Remarks
    This type should not be used directly in application code. It is designed for internal operations within the product libraries and may change or be removed in future versions without notice.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Enterprise.Data.VisualBasicReplacement.VbStrConv

    See Also