ComponentOne FlexPivot for WinForms
C1.Win.FlexPivot.8 Assembly / C1.Win.FlexPivot Namespace / C1FlexPivotGrid Class / OwnerDrawCell Event

In This Topic
    OwnerDrawCell Event (C1FlexPivotGrid)
    In This Topic
    Syntax
    'Declaration
     
    Public Event OwnerDrawCell As C1.Win.FlexGrid.OwnerDrawCellEventHandler
    public event C1.Win.FlexGrid.OwnerDrawCellEventHandler OwnerDrawCell
    Event Data

    The event handler receives an argument of type C1.Win.FlexGrid.OwnerDrawCellEventArgs containing data related to this event. The following OwnerDrawCellEventArgs properties provide information specific to this event.

    PropertyDescription
    Get the rectangle where the cell will be painted (in client coordinates).  
    Get the column index of the cell being painted.  
    Gets the C1.Win.FlexGrid.OwnerDrawCellEventArgs.Graphics object used to draw the cell. Use this object to draw custom elements in the cell.  
    Gets or sets whether the event has finished drawing the cell.  
    Gets or sets the image that will be displayed in the cell.  
    Gets a value that determines if the event was fired only to measure the cell.  
    Get the row index of the cell being painted.  
    Sets or sets the C1.Win.FlexGrid.CellStyle object used to paint the cell.  
    Gets or sets the text that will be displayed in the cell.  
    See Also