UseDocumentThumbnailIfAvailable Property

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Gets or sets whether the method Document.LoadThumbnailAsync() will return pre-generated page thumbnails (if they are available in the document), or will create thumbnail created from the page contents.

Namespace: PDFTron.SilverDox.IO
Assembly: SilverDox (in SilverDox.dll) Version: 1.2.4413.29010

Syntax

C#
bool UseDocumentThumbnailIfAvailable { get; set; }
Visual Basic
Property UseDocumentThumbnailIfAvailable As Boolean
	Get
	Set
Visual C++
property bool UseDocumentThumbnailIfAvailable {
	bool get ();
	void set (bool value);
}

Remarks

If a document contains pre-rendered thumbnails, the viewer has the option to use them, or alernatively, to generate thumbnails internally by rendering and scaling the page content. Using the built-in thumbnails is preferred except for the case of HttpStreamingPartRetriever, when it is faster to display internally generated thumbnails.

See Also