Returns an options object with the
StartRow
property changed to the specified value.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static T WithStartRow<T>(
this T options,
int startRow
)
where T : TextOptions
<ExtensionAttribute>
Public Shared Function WithStartRow(Of T As TextOptions) (
options As T,
startRow As Integer
) As T
public:
[ExtensionAttribute]
generic<typename T>
where T : TextOptions
static T WithStartRow(
T options,
int startRow
)
[<ExtensionAttribute>]
static member WithStartRow :
options : 'T *
startRow : int -> 'T when 'T : TextOptions
Parameters
- options
- Type: T
The TextOptions object to start from. - startRow
- Type: SystemInt32
The new value for
the StartRow property.
Type Parameters
- T
Return Value
Type:
TUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Reference