FlexGrid for WinForms
OwnerDrawCell Event



Fires before the grid draws a cell, when the DrawMode property is set to DrawModeEnum.OwnerDraw.
Syntax
'Declaration
 
<C1DescriptionAttribute("Fires before the grid draws a cell, when the DrawMode property is set to OwnerDraw.")>
Public Event OwnerDrawCell As OwnerDrawCellEventHandler
'Usage
 
Dim instance As C1FlexGridBase
Dim handler As OwnerDrawCellEventHandler
 
AddHandler instance.OwnerDrawCell, handler
[C1Description("Fires before the grid draws a cell, when the DrawMode property is set to OwnerDraw.")]
public event OwnerDrawCellEventHandler OwnerDrawCell
[C1Description("Fires before the grid draws a cell, when the DrawMode property is set to OwnerDraw.")]
public:
event OwnerDrawCellEventHandler^ OwnerDrawCell
Event Data

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

PropertyDescription
BoundsGet the rectangle where the cell will be painted (in client coordinates).  
ColGet the column index of the cell being painted.  
GraphicsGets the Graphics object used to draw the cell. Use this object to draw custom elements in the cell.  
HandledGets or sets whether the event has finished drawing the cell.  
ImageGets or sets the image that will be displayed in the cell.  
MeasuringGets a value that determines if the event was fired only to measure the cell.  
RowGet the row index of the cell being painted.  
StyleSets or sets the CellStyle object used to paint the cell.  
TextGets or sets the text that will be displayed in the cell.  
Remarks

The OwnerDrawCell event only fires when the DrawMode property is set to DrawModeEnum.OwnerDraw.

You can use this event to customize the appearance of any cell in the grid. The event allows three main types of customization:

  1. Change the value of the Text and Image parameters to modify the values displayed by the grid. You can use this type of customization to replace password strings with asterisks, for example.
  2. Change the Style property to display the cell using a different style than the one selected by the grid by default. You can use this type of customization to provide conditional formatting, for example.
  3. Use the Graphics and Bounds parameters and draw the cell yourself. When drawing cells this way, you may call the OwnerDrawCellEventArgs.DrawCell member to force the grid to draw specific parts of the cell, while your code draws other parts. For example, you could paint a custom background and then call DrawCell to have the grid paint the cell border and contents.

The OwnerDrawCell event also fires when the grid auto sizes rows or columns (see the AutoSizeRows(Int32,Int32,Int32,Int32,Int32,AutoSizeFlags) and AutoSizeCols(Int32,Int32,Int32,Int32,Int32,AutoSizeFlags) methods). This is done because the grid needs to measure the cell using the same text, image, and style parameters that are used to render it. In these cases, the Measuring parameter is set to true and the Bounds rectangle is empty.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

C1FlexGridBase Class
C1FlexGridBase Members

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Send Feedback