This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Removes the given row numbers from the datatable.

Namespace: Smartsite.Runtime.Modules
Assembly:  Smartsite.Runtime.Modules (in Smartsite.Runtime.Modules.dll)

Syntax

C#Copy imageCopy Code
[(Name = "{0}.Rows.RemoveAt")]
public static int RowsRemoveAt(
	 dataTable,
	params int[] rowNumbers
)
Visual Basic (Declaration)Copy imageCopy Code
<(Name := "{0}.Rows.RemoveAt")> _
Public Shared Function RowsRemoveAt ( _
	dataTable As , _
	ParamArray rowNumbers As Integer() _
) As Integer

Parameters

dataTable
SXMLDataTable
The datatable from which a row is removed.
rowNumbers
array<Int32>[]()
The row numbers that will be removed.

Return Value

The number of rows that has been removed.

See Also

Advanced