Spread for ASP.NET 7.0 Product Documentation
SetValue Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > DefaultSheetDataModel Class : SetValue Method


row
Row index of cell in model
column
Column index of cell in model
value
Value to set

Glossary Item Box

Sets the value for the cell of the specified row and column.

Syntax

Visual Basic (Declaration) 
Public Overrides Sub SetValue( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal value As Object _
) 
Visual Basic (Usage)Copy Code
Dim instance As DefaultSheetDataModel
Dim row As Integer
Dim column As Integer
Dim value As Object
 
instance.SetValue(row, column, value)
C# 
public override void SetValue( 
   int row,
   int column,
   object value
)

Parameters

row
Row index of cell in model
column
Column index of cell in model
value
Value to set

Remarks

use the GetValue method to return the value in a specified cell.

Example

This example sets an application-defined tag value for the cell of the specified row and column.
C#Copy Code
dataModel = FpSpread1.ActiveSheetView.DataModel; 
dataModel.AddCustomName("TWICESUM", "2*SUM(A1,A2)", 1, 1); 
dataModel.AddCustomName("TWICEPRODUCT", "2*A1*A2", 2, 2); 
FpSpread1.ActiveSheetView.SetFormula(1, 1, "TWICESUM"); 
FpSpread1.ActiveSheetView.SetFormula(2, 2, "TWICEPRODUCT"); 
FpSpread1.ActiveSheetView.SetValue(0, 0, 10); 
FpSpread1.ActiveSheetView.SetValue(1, 0, 10);
dataModel.SetTag(2, 2, "TWICEPRODUCT"); 
dataModel.RemoveCustomName("TWICESUM")
dataModel.Recalculate(); 
Visual BasicCopy Code
Dim dataModel As New FarPoint.Web.Spread.Model.DefaultSheetDataModel
dataModel = (FarPoint.Web.Spread.Model.DefaultSheetDataModel)FpSpread1.ActiveSheetView.DataModel
dataModel.AddCustomName("TWICESUM", "2*SUM(A1,A2)", 1, 1)
dataModel.AddCustomName("TWICEPRODUCT", "2*A1*A2", 2, 2)
FpSpread1.ActiveSheetView.SetFormula(1, 1, "TWICESUM")
FpSpread1.ActiveSheetView.SetFormula(2, 2, "TWICEPRODUCT")
FpSpread1.ActiveSheetView.SetValue(0, 0, 10)
FpSpread1.ActiveSheetView.SetValue(1, 0, 10)
dataModel.SetTag(2, 2, "TWICEPRODUCT")
dataModel.RemoveCustomName("TWICESUM")
dataModel.Recalculate();

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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.