Spread Windows Forms 10.0 Product Documentation
SetValue(Int32,Int32,Object,Boolean) Method
Example 


Row index
Column index
Value to set for the specified cell
Perform value validation
Sets the value for the specified cell on this sheet.
Syntax
'Declaration
 
Public Overloads Sub SetValue( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal value As Object, _
   ByVal validate As Boolean _
) 
'Usage
 
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim value As Object
Dim validate As Boolean
 
instance.SetValue(row, column, value, validate)
public void SetValue( 
   int row,
   int column,
   object value,
   bool validate
)

Parameters

row
Row index
column
Column index
value
Value to set for the specified cell
validate
Perform value validation
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException Specified row index is out of range; must be between 0 and the total number of rows
System.ArgumentOutOfRangeException Specified column index is out of range; must be between 0 and the total number of columns
Remarks
The validate parameter specifies whether to validate the data.
Example
This example sets a value in the cell.
object o;

fpSpread1.ActiveSheet.SetValue(0, 0, 20);

o = fpSpread1.ActiveSheet.GetValue(0, 0);

listBox1.Items.Add(o.ToString());
Dim o As Object

FpSpread1.ActiveSheet.SetValue(0, 0, 20)

o = FpSpread1.ActiveSheet.GetValue(0, 0)

ListBox1.Items.Add(o.ToString())
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetView Class
SheetView Members
Overload List
SetArray Method
SetClip Method
SetClipValue Method
SetValue Method
Cell.Text Property
Cell.Value Property
SetText Method

User-Task Documentation

Placing and Retrieving Data
Handling Data Using Sheet Methods

 

 


Copyright © GrapeCity, inc. All rights reserved.