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

TdxPDFDocumentLoadedEvent Type

A document load notification event type.

#Declaration

Delphi
TdxPDFDocumentLoadedEvent = procedure(Sender: TdxPDFDocument; const AInfo: TdxPDFDocumentLoadInfo) of object;

#Parameters

Name Type
Sender TdxPDFDocument
AInfo TdxPDFDocumentLoadInfo

#Remarks

The Sender parameter provides access to a PDF document container that raised a TdxPDFDocumentLoadedEvent event.

The AInfo parameter returns information on the loaded document’s source. You can use the AInfo.FileStream field to access the source or intermediate memory stream that contains the source document. The AInfo.FileName field returns the path to the source file if the document was loaded from a file. Refer to the TdxPDFDocumentLoadInfo record description for additional information.

The TdxPDFCustomViewer.OnDocumentLoaded and TdxPDFDocument.OnLoaded events reference the TdxPDFDocumentLoadedEvent type.

See Also