DocumentViewerBase.PageViews Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Important
This API is not CLS-compliant.
Gets a read-only collection of the active DocumentPageView objects contained within the viewer.
public:
property System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Controls::Primitives::DocumentPageView ^> ^ PageViews { System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Controls::Primitives::DocumentPageView ^> ^ get(); };
[System.CLSCompliant(false)]
public System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Controls.Primitives.DocumentPageView> PageViews { get; }
[<System.CLSCompliant(false)>]
member this.PageViews : System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Controls.Primitives.DocumentPageView>
Public ReadOnly Property PageViews As ReadOnlyCollection(Of DocumentPageView)
Property Value
A read-only collection of the active DocumentPageView objects contained within the viewer.
This property has no default value.
- Attributes
Remarks
A DocumentPageView provides a viewport for a particular page of content (represented by an underlying DocumentPage). The set of DocumentPageView objects represented by the PageViews property is used by the viewer in order to display content.
The master page corresponds to the DocumentPageView object (in the PageViews collection) that includes the IsMasterPage attached property with a value of true
. For more information, see IsMasterPage.