Click or drag to resize

IndependentAndDependentColumnsGetOriginalRowIndexForFilteredRowIndex(Double) Method

Gets the index of the original row in the data table by providing the index of the filtered row.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public double? GetOriginalRowIndexForFilteredRowIndex(
	double filteredRowIndex
)

Parameters

filteredRowIndex  Double
Index of the filtered row.

Return Value

NullableDouble
The index of the original row in the data table corresponding to the index of the filtered row. If the index is not an integer, the result is linearly interpolated between the result of the floor of the index and the ceiling of the index. If the index of the filtered row equal to or higher than the total number of filtered rows, the return value is null.
See Also