Range Constructor
Creates a Range with a specified starting point and length.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Sub New ( _
start As Integer, _
length As Integer _
)
'Usage
Dim start As Integer
Dim length As Integer
Dim instance As New Range(start, length)
public Range(
int start,
int length
)
Parameters
start
Type: System.Int32An integer indicating the start of the range.
length
Type: System.Int32An integer indicating how long the range spans.