FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : GetNote Method |
'Declaration Public Overridable Function GetNote( _ ByVal row As Integer, _ ByVal column As Integer _ ) As String
Specify a cell note for a cell by calling the SetNote method. Cells with notes do not show any other indication other than displaying the note when the pointer is over the cell.
FarPoint.Web.Spread.SheetView sv; string s; sv = e.SheetView; sv.SetNote(0, 0, "Pay Period"); s = sv.GetNote(0, 0); Response.Write("The note for the cell is a " + s);
Dim sv As FarPoint.Web.Spread.SheetView Dim s As String sv = FpSpread1.ActiveSheetView sv.SetNote(0, 0, "Pay Period") s = sv.GetNote(0, 0) Response.Write("The note for the cell is a " & s)
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional