FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > Cell クラス : ResetNote メソッド |
'Declaration Public Sub ResetNote()
'使用法 Dim instance As Cell instance.ResetNote()
public void 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()