ShowThumbnailBeforePageContent Property

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Gets or sets whether the viewer will display an enlarged thumbnail of a document's page when the page is scrolled to but has not yet been loaded.

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

Syntax

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

Remarks

Showing an enlarged thumbnail on a full page before the content is available is useful for HttpPartRetriever because the time to acquire the entire page content can be noticeable, but the time to acquire a thumbnail is minimal. LocalPartRetriever does not need to show a thumbnail first because the entire page content can be quickly retrieved, and HttpStreamingPartRetriever loads page content before any thumbnails, so it is not possible to show a thumbnail first.

See Also