FarPoint.Web.Spread 名前空間 > Cell クラス : Note プロパティ |
ポインタがセルノートを持つセル上にあるとき、セルノートのテキストがセルの横の小さいボックスに表示されます。ノートを含むセルは、セル上にポインタが移動したときにノートを表示する以外に、ノートがあることを示すものはありません。
列ヘッダまたは行ヘッダのセルにはノートを設定することはできません。
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 = "NoteTest"; 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 = "NoteTest" mycell.Locked = True mycell.Margin = margin mycell.Note = "This is the Note" FpSpread1.ActiveSheetView.Rows(0).Height = 80