GetCellComment
Get cell comment as a string
BOOL GetCellComment( int nRow, int nCol, string & comment)
TRUE for success, otherwise FALSE
EX1
void Worksheet_GetCellComment() { Worksheet wks; wks.Create("origin"); int row=3; int col=1; string strNote = "some notes"; wks.SetCellComment(row, col, strNote); string strOutput; wks.GetCellComment(row, col, strOutput); out_str(strOutput); }
Worksheet::SetCellComment
origin.h