Spread for ASP.NET 10 Product Documentation
GetUnboundValue Method (DefaultSheetDataModel)
Example 


Row index of cell
Column index of cell
Gets the unbound value for the cell for the specified row and column.
Syntax
'Declaration
 
Public Function GetUnboundValue( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As Object
'Usage
 
Dim instance As DefaultSheetDataModel
Dim row As Integer
Dim column As Integer
Dim value As Object
 
value = instance.GetUnboundValue(row, column)
public object GetUnboundValue( 
   int row,
   int column
)

Parameters

row
Row index of cell
column
Column index of cell

Return Value

Object containing the unbound value
Example
This example returns the unbound value for the cell for the specified row and column.
object o; 
o = dataModel.GetUnboundValue(3, 0);
Dim o As Object
o = dataModel.GetUnboundValue(3, 0) 
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

DefaultSheetDataModel Class
DefaultSheetDataModel Members

 

 


Copyright © GrapeCity, inc. All rights reserved.