Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxFcDrawExEvent Type

The OnDrawObjectEx event’s procedural type.

#Declaration

Delphi
TdxFcDrawExEvent = procedure(Sender: TdxCustomFlowChart; AObject: TdxFcObject; ACanvas: TdxGPCanvas; APaintData: TdxFcDrawExEventPaintData) of object;

#Parameters

Name Type
Sender TdxCustomFlowChart
AObject TdxFcObject
ACanvas TdxGPCanvas
APaintData TdxFcDrawExEventPaintData

#Remarks

This event occurs when the control is about to paint a content of a chart symbol whose shape type is fcsAdvanced. Handle the event to override the default paint routines.

The Sender parameter provides access to the control that raised the event. The AObject parameter refers to the chart symbol that is about to be drawn. Use the ACanvas and APaintData parameters to access a drawing surface and paint settings.

See Also