Click or drag to resize
FrameworkElementCreateDomElement Method
Provides a base implementation for creating the dom elements designed to represent an instance of a FrameworkElement and defines the place where its child(ren) will be added.

Namespace: Windows.UI.Xaml
Assembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax
C#
public override Object CreateDomElement(
	Object parentRef,
	out Object domElementWhereToPlaceChildren
)

Parameters

parentRef
Type: SystemObject
The parent of the FrameworkElement
domElementWhereToPlaceChildren
Type: SystemObject
The dom element where the FrameworkElement's children will be added.

Return Value

Type: Object
The "root" dom element of the FrameworkElement.
See Also