Search
Arrow.CustomDraw Property
See Also
 



Gets or sets the type of custom drawing performed on this arrow.

 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 an arrow that cannot be achieved by customizing it through properties. The control raises the DrawArrow 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 arrow.
  • cdAdditional - this mode makes your drawing code execute after the arrow segments are drawn but before its Text is rendered.
  • cdFull -  this mode executes just the custom drawing code and no standard rendering takes place.

 See Also