PageContent.Child 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.
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:
- PageContent has an immediate FixedPage child defined in XAML markup.
- The IAddChild.AddChild has been called to set the FixedPage as the child of the PageContent.
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.