PowerTools SPREAD for Windows Forms 8.0J
ResetNote メソッド


空にするセルのノートをリセットします。
構文
'Declaration
 
Public Sub ResetNote() 
'使用法
 
Dim instance As Cell
 
instance.ResetNote()
public void ResetNote()
次のサンプルコードは、ResetNoteメソッドを使用します。
FarPoint.Win.Spread.Cell acell;
acell = fpSpread1.ActiveSheet.Cells[0, 0];
fpSpread1.ActiveSheet.Cells[0, 0].Text = "Note Test";
acell.Note = "This is a note";
acell.ResetNote();
Dim acell As FarPoint.Win.Spread.Cell
acell = FpSpread1.ActiveSheet.Cells(0, 0)
FpSpread1.ActiveSheet.Cells(0, 0).Text = "Note Test"
acell.Note = "This is a note"
acell.ResetNote()
参照

Cell クラス
Cell メンバ

 

 


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