Skip to main content

Page.Document Property

Gets or sets a document contained within the current Page.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Document")]
public Document Document { get; set; }

Property Value

Type Description
Document

A Document contained within the current Page.

Remarks

The Page is a type of container capable of displaying a single Document assigned to its Document property. The figure below illustrates a Page with a Document within:

DocumentManager - Page

The most common scenario is a Page linked to a tile via the Tile.ActivationTarget property. In this case, you can handle the WindowsUIView.TileClick event to pass the Tile.Document property’s value to the page’s Document property.

See Also