PowerTools SPREAD for ASP.NET 8.0J
Note プロパティ

セルのノートを取得または設定します。
構文
'Declaration
 
Public Property Note As String
public string Note {get; set;}

プロパティ値

このセルのメモを含むString
解説

ポインタがセルノートを持つセル上にあるとき、セルノートのテキストがセルの横の小さいボックスに表示されます。ノートを含むセルは、セル上にポインタが移動したときにノートを表示する以外に、ノートがあることを示すものはありません。

列ヘッダまたは行ヘッダのセルにはノートを設定することはできません。

この例では、Cellオブジェクトを作成し、セルにノートを設定します。ユーザーがセル上にマウスを移動すると、マウスポインタの位置にノートが表示されます。
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
参照

Cell クラス
Cell メンバ
GetNote メソッド

 

 


© 2003-2015, GrapeCity inc. All rights reserved.