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

TdxCustomContainerReportLink.OnInitializeItem Event

In This Article

Occurs during the report item initialization.

#Declaration

Delphi
property OnInitializeItem: TdxContainerReportLinkInitializeItemEvent read; write;

#Remarks

The OnInitializeItem event occurs during the report item initialization. This process takes place before the OnCustomDrawItem event. The AnItem parameter represents the processed report item. The AComponent parameter specifies the aggregated component corresponding to the specified item.

Changes applied to a report item via this event handler can be saved within a file, unlike the changes applied via custom painting (see the OnCustomDrawItem event).

Note

since this event is fired when no drawing has been performed, handling it takes significantly less resources than the custom draw mechanism.

See Also