Spread Windows Forms 7.0 Product Documentation
SetValue(Int32,Int32,Object) Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > SetValue Method : SetValue(Int32,Int32,Object) Method


row
Row index
column
Column index
value
Value to set for the specified cell

Glossary Item Box

Sets the value for the specified cell on this sheet.

Syntax

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

Parameters

row
Row index
column
Column index
value
Value to set for the specified cell

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

Example

This example illustrates the use of this member by returning the value (unformatted data) for the specified cell.
C#Copy Code
object o;
fpSpread1.ActiveSheet.SetValue(0, 0, 20);
o = fpSpread1.ActiveSheet.GetValue(0, 0);
listBox1.Items.Add(o.ToString());
Visual BasicCopy Code
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 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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