Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GetClip Method / GetClip(Int32,Int32,Int32,Int32) Method
Starting row index, or -1 for all rows
Starting column index, or -1 for all columns
Number of rows, or -1 for all rows
Number of columns, or -1 for all columns


In This Topic
    GetClip(Int32,Int32,Int32,Int32) Method
    In This Topic
    Gets a tab-delimited string that contains the formatted text in a specified range.
    Syntax
    'Declaration
     
    
    Public Overloads 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)
    public string GetClip( 
       int row,
       int column,
       int rowCount,
       int columnCount
    )

    Parameters

    row
    Starting row index, or -1 for all rows
    column
    Starting column index, or -1 for all columns
    rowCount
    Number of rows, or -1 for all rows
    columnCount
    Number of columns, or -1 for all columns

    Return Value

    Tab-delimited string containing the formatted data in the range
    Exceptions
    ExceptionDescription
    Specified row is out of range; index must be between -1 (for all) and the number of rows
    Specified column is out of range; index must be between -1 (for all) and the number of columns
    See Also