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

TdxPDFViewerOptionsBehavior.RenderContentDelay Property

Specifies the time interval (in milliseconds) between the latest change made to the document view and the subsequent update that reflects the change.

#Declaration

Delphi
property RenderContentDelay: Integer read; write; default dxPDFDocumentViewerDefaultRenderContentDelay;

#Property Value

Type Default
Integer dxPDFDocumentViewerDefaultRenderContentDelay

#Remarks

The PDF Viewer control delays updating the displayed document pages in response to rotation, scrolling or zooming operations to improve end-user experience by avoiding excessive repaint operations. Each two document view changes made within the time interval specified by the RenderContentDelay property are considered a single change requiring only a single update.

To improve the application UI’s responsiveness when the PDF Viewer control displays multiple document pages simultaneously, you can increase the RenderContentDelay property value and/or set the RenderContentInBackground property to True to enable asynchronous page rendering.

Note

A newly assigned RenderContentDelay property value is automatically clamped within the range between 50 and 1000, inclusive.

The default RenderContentDelay property value is dxPDFDocumentViewerDefaultRenderContentDelay.

See Also