When the pointer is over a cell that has a cell note, the cell note text displays in a little box next to the cell. Cells with notes do not display any indication that they have a note, other than displaying the note when the pointer moves over the cell.
You cannot put notes in cells in the column or row headers.
FarPoint.Web.Spread.Cell mycell; FarPoint.Web.Spread.Inset margin = new FarPoint.Web.Spread.Inset(20,40,50,20); mycell = FpSpread1.Cells[0,0]; mycell.Text="Note Test"; mycell.Locked=true; mycell.Margin=margin; mycell.Note="This is the Note"; FpSpread1.ActiveSheetView.Rows[0].Height=80;
Dim mycell As FarPoint.Web.Spread.Cell Dim margin As New FarPoint.Web.Spread.Inset(20,40,50,20) mycell=FpSpread1.Cells(0,0) mycell.Text="Note Test" mycell.Locked=True mycell.Margin=margin mycell.Note="This is the Note" FpSpread1.ActiveSheetView.Rows(0).Height=80