  | DataFrameGetSubRow(Int32, Slice) Method | 
            Gets the portion of the row in this data frame indicated by the given row index and
            column slice.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic Object[] GetSubRow(
	int rowIndex,
	Slice colSlice
)
Public Function GetSubRow ( 
	rowIndex As Integer,
	colSlice As Slice
) As Object()
public:
array<Object^>^ GetSubRow(
	int rowIndex, 
	Slice^ colSlice
)
member GetSubRow : 
        rowIndex : int * 
        colSlice : Slice -> Object[] Parameters
- rowIndex  Int32
 - A row index.
 - colSlice  Slice
 - A column slice.
 
Return Value
ObjectA collection of row data.
See Also