XamlDirect.CreateInstance(XamlTypeIndex) Method
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.
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);