Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / IDrawingObjectProvider Interface / GetDrawingObjects Method
The worksheet to get drawing objects.
The base row index.
The base column index.
The row count.
The column count.


In This Topic
    GetDrawingObjects Method
    In This Topic
    Return a list of custom drawing objects.
    Syntax
    'Declaration
     
    Function GetDrawingObjects( _
       ByVal sheet As Worksheet, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer _
    ) As DrawingObject()
    'Usage
     
    Dim instance As IDrawingObjectProvider
    Dim sheet As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim value() As DrawingObject
     
    value = instance.GetDrawingObjects(sheet, row, column, rowCount, columnCount)
    DrawingObject[] GetDrawingObjects( 
       Worksheet sheet,
       int row,
       int column,
       int rowCount,
       int columnCount
    )

    Parameters

    sheet
    The worksheet to get drawing objects.
    row
    The base row index.
    column
    The base column index.
    rowCount
    The row count.
    columnCount
    The column count.
    See Also