Spread WinForms 15
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / GetClipValue Method
Starting row index of the range of cells (or -1 for all rows)
Starting column index of the range of cells (or -1 for all columns)
Number of rows in the range (or -1 for all rows)
Number of columns in the range (or -1 for all columns)


GetClipValue Method (SheetView)
Gets a tab-delimited string that contains the unformatted data in a range of cells on this sheet.
Syntax
'Declaration
 
Public Function GetClipValue( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) As String
 
'Usage
 
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
Dim value As String
 
value = instance.GetClipValue(row, column, rowCount, columnCount)

Parameters

row
Starting row index of the range of cells (or -1 for all rows)
column
Starting column index of the range of cells (or -1 for all columns)
rowCount
Number of rows in the range (or -1 for all rows)
columnCount
Number of columns in the range (or -1 for all columns)

Return Value

Tab-delimited string that contains the unformatted data in the range of cells
Exceptions
ExceptionDescription
Specified row index is out of range; must be between 0 and the total number of rows
Specified column index is out of range; must be between 0 and the total number of columns
See Also