SetCellComment
Set cell comment
BOOL SetCellComment( int nRow, int nCol, LPCSTR pszcomment, BOOL bInteractive = FALSE )
TRUE for success, otherwise FALSE
EX1
void Worksheet_SetCellComment() { 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::GetCellComment
origin.h