The Sheet uses currentRowIdx and currentColIdx to store the current position, however both of these are protected (fairly so).
There is, however, no way to get these values currently so you have to maintain your own counter alongside if you want to keep track of what row you're on.
This simply adds two getter functions, getCurrentRowId and getCurrentColId.
Hi, great package.
The Sheet uses
currentRowIdx
andcurrentColIdx
to store the current position, however both of these are protected (fairly so). There is, however, no way to get these values currently so you have to maintain your own counter alongside if you want to keep track of what row you're on.This simply adds two getter functions,
getCurrentRowId
andgetCurrentColId
.