FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / GetClip 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)


GetClip Method (SheetView)
Gets a tab-delimited string that contains the formatted data in a specified range of cells on this sheet.
Syntax
'Declaration
 
Public Function GetClip( _
   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.GetClip(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 formatted data in the range
Exceptions
ExceptionDescription
Specified row index is out of range; must be between -1 and the total number of rows
Specified column index is out of range; must be between -1 and the total number of columns
See Also