Search
Table.CustomDraw Property
See Also
 



Gets or sets what type of custom drawing is performed on this table.

 Syntax

VB6  Copy Code

Public Property Get CustomDraw() As ECustomDraw
Public Property Let CustomDraw( _
    ByVal value As ECustomDraw _
)

C++  Copy Code

public:
ECustomDraw get_CustomDraw ()
void put_CustomDraw (
    ECustomDraw value
)

 Property Value

A member of the ECustomDraw enumeration.

 Remarks

Use custom drawing to implement special appearance of a table that cannot be achieved by customizing it through properties. The control raises the DrawTable event to let you execute custom rendering code.

The CustomDraw property can be set to one of the following values:

  • cdNone - no custom drawing for the table.
  • cdAdditional - this mode makes your drawing code execute after the table has been rendered with its standard appearance.
  • cdFull -  this mode executes just the custom drawing code and no standard rendering takes place.

 See Also