Sets a user-defined note value for the cell at the specified row and column.
Syntax
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.
C# | Copy Code |
---|
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());
|
Visual Basic | Copy Code |
---|
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()) |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also