FixedPage::ContentBox Property

 

Gets or sets the bounding rectangle of the content area; that is, the area of the page within the margins, if any.

Namespace:   System.Windows.Documents
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
property Rect ContentBox {
	Rect get();
	void set(Rect value);
}

Property Value

Type: System.Windows::Rect

The Rect that defines the content area.

The following rules must be enforced in defining the ContentBox:

  • ContentBox.Left must be greater than or equal to zero (0), and less than or equal to (ContentBox.Right-1).

  • ContentBox.Top must be greater than or equal to zero (0), and less than or equal to (ContentBox.Bottom-1).

  • ContentBox.Right must be greater than or equal to (ContentBox.Left+1).

  • ContentBox.Bottom must be greater than or equal to (ContentBox.Top+1).

  • For rules about the relative sizes of the ContentBox and the BleedBox, see the topic FixedPage::BleedBox.

  • Identifier field

ContentBoxProperty

Metadata properties set to true

  • None

.NET Framework
Available since 3.0
Return to top
Show: