Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / GetDrawingObject Method
The row.
The column.
The row count.
The column count.


In This Topic
    GetDrawingObject Method
    In This Topic
    Gets the data bar object or icon object of the current sheet in the specified range.
    Syntax
    'Declaration
     
    Public Overridable Function GetDrawingObject( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer _
    ) As DrawingObject()
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim value() As DrawingObject
     
    value = instance.GetDrawingObject(row, column, rowCount, columnCount)
    public virtual DrawingObject[] GetDrawingObject( 
       int row,
       int column,
       int rowCount,
       int columnCount
    )

    Parameters

    row
    The row.
    column
    The column.
    rowCount
    The row count.
    columnCount
    The column count.

    Return Value

    The collection of drawing objects.
    See Also