Sets the value of the cell in the group.
Syntax
Parameters
- row
- Row index of the cell
- col
- Column index of the cell
- value
- Value to assign to the cell
Return Value
Object containing the value
Example
This example sets the value for the specified index.
C# | Copy Code |
---|
private void button1_Click(object sender, EventArgs e)
{
if ((FpSpread1.ActiveSheetView.DataModel) is FarPoint.Web.Spread.Model.GroupDataModel)
{
gm = (FarPoint.Web.Spread.Model.GroupDataModel)FpSpread1.ActiveSheetViewDataModel;
gm.SetValue(1, 1, "Smith");
}
}
|
Visual Basic | Copy Code |
---|
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim gm As FarPoint.Web.Spread.Model.GroupDataModel
If TypeOf (FpSpread1.ActiveSheetView.DataModel) Is FarPoint.Web.Spread.Model.GroupDataModel Then
gm = FpSpread1.ActiveSheetView.DataModel
gm.SetValue(1, 1, "Smith");
End Sub
|
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