XamlDirect.CreateInstance(XamlTypeIndex) Method

Definition

Creates an IXamlDirectObject instance of the type specified by the XamlTypeIndex parameter.

public:
 virtual IXamlDirectObject ^ CreateInstance(XamlTypeIndex typeIndex) = CreateInstance;
IXamlDirectObject CreateInstance(XamlTypeIndex const& typeIndex);
public IXamlDirectObject CreateInstance(XamlTypeIndex typeIndex);
function createInstance(typeIndex)
Public Function CreateInstance (typeIndex As XamlTypeIndex) As IXamlDirectObject

Parameters

typeIndex
XamlTypeIndex

Refers to the specific XAML type from the set of supported types listed in the XamlTypeIndex enum.

Returns

Returns the IXamlDirectObject instance.

Examples

The following example shows how to create an IXamlDirectObject instance for a Border element.

XamlDirect xd = XamlDirect.GetDefault();
IXamlDirectObject border = xd.CreateInstance(XamlTypeIndex.Border);
XamlDirect^ xd = XamlDirect::GetDefault();
IXamlDirectObject^ border = xd->CreateInstance(XamlTypeIndex::Border);

Applies to

See also