ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Data.VBFunctionLib Assembly / GrapeCity.Enterprise.Data.VisualBasicReplacement Namespace / Strings Class / StrConv Method
Required. String expression to be converted.
Required. VbStrConv Enumeration member. The enumeration value specifying the type of conversion to perform.
Optional. The LocaleID value, if different from the system LocaleID value. (The system LocaleID value is the default.)

In This Topic
    StrConv Method
    In This Topic
    [NotImplemented] Returns a string converted as specified. This method called kernel32.dll.
    Syntax
    'Declaration
     
    Public Shared Function StrConv( _
       ByVal str As String, _
       ByVal conversion As VbStrConv, _
       Optional ByVal localeID As Integer _
    ) As String
    public static string StrConv( 
       string str,
       VbStrConv conversion,
       int localeID
    )

    Parameters

    str
    Required. String expression to be converted.
    conversion
    Required. VbStrConv Enumeration member. The enumeration value specifying the type of conversion to perform.
    localeID
    Optional. The LocaleID value, if different from the system LocaleID value. (The system LocaleID value is the default.)

    Return Value

    Returns a string converted as specified.
    See Also