Freigeben über


XamlDirect.GetCollectionCount(IXamlDirectObject) Methode

Definition

Gibt die Anzahl der Elemente in der angegebenen IXamlDirectObject-Auflistung zurück.

public:
 virtual unsigned int GetCollectionCount(IXamlDirectObject ^ xamlDirectObject) = GetCollectionCount;
uint32_t GetCollectionCount(IXamlDirectObject const& xamlDirectObject);
public uint GetCollectionCount(IXamlDirectObject xamlDirectObject);
function getCollectionCount(xamlDirectObject)
Public Function GetCollectionCount (xamlDirectObject As IXamlDirectObject) As UInteger

Parameter

xamlDirectObject
IXamlDirectObject

Bezieht sich auf die spezifische IXamlDirectObject-Auflistung .

Gibt zurück

UInt32

unsigned int

uint32_t

Anzahl der Elemente.

Beispiele

Das folgende Beispiel zeigt, wie die Anzahl von Panel.Children über die instance des IXamlDirectObject abgerufen wird.

XamlDirect xd = XamlDirect.GetDefault();

IXamlDirectObject relativePanel = xd.CreateInstance(XamlTypeIndex.RelativePanel);

IXamlDirectObject childrenCollection = xd.GetXamlDirectObjectProperty(relativePanel, XamlPropertyIndex.Panel_Children);

uint count = xd.GetCollectionCount(childrenCollection);
XamlDirect^ xd = XamlDirect::GetDefault();

IXamlDirectObject^ relativePanel = xd->CreateInstance(XamlTypeIndex::RelativePanel);

IXamlDirectObject^ childrenCollection = xd->GetXamlDirectObjectProperty(relativePanel, XamlPropertyIndex::Panel_Children);

UINT count = xd->GetCollectionCount(childrenCollection);

Gilt für: