Class ThumbnailsCollection
Represents thumbnails collection for given document.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.UI
Assembly: Telerik.Windows.Controls.FixedDocumentViewers.dll
Syntax
public class ThumbnailsCollection : IEnumerable<Thumbnail>, IEnumerable
Constructors
ThumbnailsCollection(RadFixedDocument, Double)
Initializes a new instance of the ThumbnailsCollection class.
Declaration
public ThumbnailsCollection(RadFixedDocument document, double thumbnailHeight)
Parameters
Telerik.Windows.Documents.Fixed.Model.RadFixedDocument
document
The document. |
System.Double
thumbnailHeight
The height of the thumbnail. |
Properties
Document
Gets the RadFixedDocument.
Declaration
public RadFixedDocument Document { get; }
Property Value
Telerik.Windows.Documents.Fixed.Model.RadFixedDocument
The document. |
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<Thumbnail> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<Thumbnail>
A System.Collections.Generic.IEnumerator<T> that can be used to iterate through the collection. |
Implements
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|