Spread for ASP.NET 11 Product Documentation
SetNote Method (DefaultSheetDataModel)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > DefaultSheetDataModel Class : SetNote Method
Row index of cell in the model
Column index of cell in the model
Note value to set
Sets a user-defined note value for the cell at the specified row and column.
Syntax
'Declaration
 
Public Overrides Sub SetNote( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal value As String _
) 
'Usage
 
Dim instance As DefaultSheetDataModel
Dim row As Integer
Dim column As Integer
Dim value As String
 
instance.SetNote(row, column, value)
public override void SetNote( 
   int row,
   int column,
   string value
)

Parameters

row
Row index of cell in the model
column
Column index of cell in the model
value
Note value to set
Example
This example sets a note in some cells and returns the number of columns containing notes.
FarPoint.Web.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Web.Spread.Model.DefaultSheetDataModel(); 
dataModel = (FarPoint.Web.Spread.Model.DefaultSheetDataModel)FpSpread1.ActiveSheetView.DataModel; 
dataModel.SetNote(0, 0, "Cell A1"); 
dataModel.SetNote(0, 1, "Cell B1"); 
int i; 
i = dataModel.GetNonEmptyNotesColumnCount; 
Response.Write(i.ToString());
Dim dataModel As New FarPoint.Web.Spread.Model.DefaultSheetDataModel
dataModel = FpSpread1.ActiveSheetView.DataModel
dataModel.SetNote(0, 0, "Cell A1")
dataModel.SetNote(0, 1, "Cell B1")
Dim i As Integer
i = dataModel.GetNonEmptyNotesColumnCount
Response.Write(i.ToString())
See Also

Reference

DefaultSheetDataModel Class
DefaultSheetDataModel Members
GetNote Method