Click or drag to resize

PdfWebControlGroupThumbnails Property

Gets or sets a value indicating whether the server should render PDF thumbnails in a group for PdfWebControl instances.

Namespace:  RadPdf.Web.UI
Assembly:  RadPdf (in RadPdf.dll) Version: 3.43.0.0 (3.43.0.0)
Syntax
public bool GroupThumbnails { get; set; }

Property Value

Type: Boolean
If true the server should create thumbnail groups (of 5); otherwise, if false the server will render all pages upfront in order. The default value is true.
Remarks

To have an effect, this property must be set before CreateDocument(String, Byte) is called.

To have an effect, RenderOnDemand must be true; otherwise, thumbnails will not be grouped.

This property will be ignored if AllowFindMatchingPdf is true and the PDF referenced by CreateDocument(String, Byte) was previously loaded. (The value of this property when the PDF was originally loaded by CreateDocument(String, Byte) will instead be used)

RAD PDF prior to version 2.22 did not support this feature. All documents created with version 2.21 and earlier will behave as if this property is false.

At this time, you can not append documents using a Document ID if this property is true.

See Also