VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / DrawingString Class / Substring Methods / Substring(Int32) Method
Syntax Requirements SeeAlso
In This Topic
    Substring(Int32) Method (DrawingString)
    In This Topic
    Retrieves a substring from this instance. The substring starts at a specified character position and continues to the end of the string.
    Syntax
    'Declaration
    
    Public Overloads Function Substring( _
    ByVal startIndex
    The zero-based starting character position of a substring in this instance.
    As System.Int32 _
    ) As DrawingString
    public DrawingString Substring(
    System.Int32 startIndex
    )
    public: DrawingString* Substring(
    System.Int32 startIndex
    )
    public:
    DrawingString^ Substring(
    System.Int32 startIndex
    )

    Parameters

    startIndex
    The zero-based starting character position of a substring in this instance.

    Return Value

    >A string that is equivalent to the substring that begins at startIndex in this instance, or Empty if startIndex is equal to the length of this instance.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also