MCPcopy Create free account
hub / github.com/KDE/labplot / textAt

Method textAt

src/backend/core/column/ColumnPrivate.cpp:2733–2737  ·  view source on GitHub ↗

* \brief Return the content of row 'row'. * * Use this only when columnMode() is Text */

Source from the content-addressed store, hash-verified

2731 * Use this only when columnMode() is Text
2732 */
2733QString ColumnPrivate::textAt(int row) const {
2734 if (!m_data || m_columnMode != AbstractColumn::ColumnMode::Text)
2735 return {};
2736 return static_cast<QVector<QString>*>(m_data)->value(row);
2737}
2738
2739/**
2740 * \brief Return the date part of row 'row'

Callers 1

copyMethod · 0.45

Calls 1

valueMethod · 0.45

Tested by

no test coverage detected