Until we add such support, you will need to get the Dataset from a worksheet:
void gd(string strBookSheet = "[Book1]Sheet1", string strCol = "A")
{
Worksheet wks(strBookSheet);
Column cc = wks.Columns(strCol);
Dataset dd(cc);
out_double("first cell = %f\n", dd[0]);
}
CP