OpenTypeMethods.Substring Method (Object, Object, Object)
Returns the substring of a specific length after the specified starting index location.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Shared Function Substring ( _
targetString As Object, _
startIndex As Object, _
length As Object _
) As Object
'Usage
Dim targetString As Object
Dim startIndex As Object
Dim length As Object
Dim returnValue As Object
returnValue = OpenTypeMethods.Substring(targetString, _
startIndex, length)
public static Object Substring(
Object targetString,
Object startIndex,
Object length
)
public:
static Object^ Substring(
Object^ targetString,
Object^ startIndex,
Object^ length
)
static member Substring :
targetString:Object *
startIndex:Object *
length:Object -> Object
public static function Substring(
targetString : Object,
startIndex : Object,
length : Object
) : Object
Parameters
- targetString
Type: System.Object
The string from which to return the substring.
- startIndex
Type: System.Object
The starting index for the substring.
- length
Type: System.Object
The length of the substring.
Return Value
Type: System.Object
The substring.
Remarks
The Substring method returns the length number of characters from startIndex through the end of the targetString.