New to Telerik UI for WPFStart a free 30-day trial

Represents thumbnails collection for given document.

Definition

Namespace:Telerik.Windows.Documents.UI

Assembly:Telerik.Windows.Controls.FixedDocumentViewers.dll

Syntax:

C#
public class ThumbnailsCollection : IEnumerable<Thumbnail>, IEnumerable

Inheritance: objectThumbnailsCollection

Implements: IEnumerableIEnumerable<Thumbnail>

Constructors

Initializes a new instance of the ThumbnailsCollection class.

C#
public ThumbnailsCollection(RadFixedDocument document, double thumbnailHeight)
Parameters:documentRadFixedDocument

The document.

thumbnailHeightdouble

The height of the thumbnail.

Properties

Document

RadFixedDocument

Gets the RadFixedDocument.

C#
public RadFixedDocument Document { get; }
Property Value:

The document.

Methods

Returns an enumerator that iterates through the collection.

C#
public IEnumerator<Thumbnail> GetEnumerator()
Returns:

IEnumerator<Thumbnail>

A IEnumerator<T> that can be used to iterate through the collection.

Implements: IEnumerable<Thumbnail>.GetEnumerator()