You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There may already be a way to do this but, if not, perhaps add the below. I have occasions where I can converting CSV to some other format such as an Array and the user has the option to indicate whether they want headers or not which necessitates knowing whether there are headers.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
There may already be a way to do this but, if not, perhaps add the below. I have occasions where I can converting CSV to some other format such as an Array and the user has the option to indicate whether they want headers or not which necessitates knowing whether there are headers.
Thanks.
bool HasColumnHeader() const
{
if (mLabelParams.mColumnNameIdx >= 0)
return true;
else
return false;
}
Beta Was this translation helpful? Give feedback.
All reactions