ThumbnailsCollection
Class
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:
Constructors
Initializes a new instance of the ThumbnailsCollection class.
C#
public ThumbnailsCollection(RadFixedDocument document, double thumbnailHeight)
The document.
thumbnailHeightdoubleThe height of the thumbnail.
Properties
Document
RadFixedDocument
Gets the RadFixedDocument.
C#
public RadFixedDocument Document { get; }
The document.
Methods
Returns an enumerator that iterates through the collection.
C#
public IEnumerator<Thumbnail> GetEnumerator()
A IEnumerator<T> that can be used to iterate through the collection.
Implements: