Aspose::Cells::Cells::RemoveDuplicates method

Cells::RemoveDuplicates() method

Removes duplicate rows in the sheet.

void Aspose::Cells::Cells::RemoveDuplicates()

See Also

Cells::RemoveDuplicates(int32_t, int32_t, int32_t, int32_t) method

Removes duplicate values in the range.

void Aspose::Cells::Cells::RemoveDuplicates(int32_t startRow, int32_t startColumn, int32_t endRow, int32_t endColumn)
ParameterTypeDescription
startRowint32_tThe start row.
startColumnint32_tThe start column
endRowint32_tThe end row index.
endColumnint32_tThe end column index.

See Also

Cells::RemoveDuplicates(int32_t, int32_t, int32_t, int32_t, bool, const Vector <int32_t>&) method

Removes duplicate data of the range.

void Aspose::Cells::Cells::RemoveDuplicates(int32_t startRow, int32_t startColumn, int32_t endRow, int32_t endColumn, bool hasHeaders, const Vector<int32_t> &columnOffsets)
ParameterTypeDescription
startRowint32_tThe start row.
startColumnint32_tThe start column
endRowint32_tThe end row index.
endColumnint32_tThe end column index.
hasHeadersboolIndicates whether the range contains headers.
columnOffsetsconst Vector <int32_t>&The column offsets.

See Also