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

TBasedxReportLink.IsSupportedCompClass(TClass) Method

Determines whether a specific component class is supported by a given report link.

#Declaration

Delphi
class function IsSupportedCompClass(AComponentClass: TClass): Boolean; virtual;

#Parameters

Name Type
AComponentClass TClass

#Returns

Type
Boolean

#Remarks

One report link can support several components for printing. For instance, you can override TStringGrid to expand its functionality and use a new grid in your application. If your new class does not differ much from the standard TStringGrid, you can use the same report link for printing. Use the IsSupportCompClass method to determine whether a specific component is supported by a given report link. If a specific component is supported, the IsSupportCompClass method returns True.

See Also