PageContent.Child Property

Definition

Gets or sets the FixedPage associated with this PageContent.

public:
 property System::Windows::Documents::FixedPage ^ Child { System::Windows::Documents::FixedPage ^ get(); };
public:
 property System::Windows::Documents::FixedPage ^ Child { System::Windows::Documents::FixedPage ^ get(); void set(System::Windows::Documents::FixedPage ^ value); };
public System.Windows.Documents.FixedPage Child { get; }
public System.Windows.Documents.FixedPage Child { get; set; }
member this.Child : System.Windows.Documents.FixedPage
member this.Child : System.Windows.Documents.FixedPage with get, set
Public ReadOnly Property Child As FixedPage
Public Property Child As FixedPage

Property Value

The FixedPage associated with this PageContent, or null when the FixedPage is set by the Source property.

Remarks

The Child property returns a FixedPage when:

The Child property returns null when the FixedPage is set by the Source property (when specified by the Source property, the FixedPage is not cached). Use GetPageRoot or GetPageRootAsync to return the FixedPage when set by the Source property.

XAML Text Usage

You cannot use this property in XAML.

Applies to

See also