次の方法で共有


IXamlDirect.GetXamlDirectObjectFromCollectionAt(Object, UInt32) メソッド

定義

指定した IXamlDirect コレクションから、指定したインデックス位置にある IXamlDirect 項目を返します。

このドキュメントは、UWP 用 WinUI 2 に適用されます (Windows アプリ SDKWinUI については、Windows アプリ SDK名前空間を参照してください)。

public:
 Platform::Object ^ GetXamlDirectObjectFromCollectionAt(Platform::Object ^ xamlDirectObject, unsigned int index);
IInspectable GetXamlDirectObjectFromCollectionAt(IInspectable const& xamlDirectObject, uint32_t const& index);
public object GetXamlDirectObjectFromCollectionAt(object xamlDirectObject, uint index);
Public Function GetXamlDirectObjectFromCollectionAt (xamlDirectObject As Object, index As UInteger) As Object

パラメーター

xamlDirectObject
Object

Platform::Object

IInspectable

特定の IXamlDirect コレクションを参照します。

index
UInt32

unsigned int

uint32_t

取得する項目のコレクション内のインデックスを参照します。

戻り値

Object

Platform::Object

IInspectable

コレクションの指定したインデックス位置にある IXamlDirect 項目を返します。

次の例は、コレクションの指定したインデックス位置にある IXamlDirect 項目にアクセスする方法を示しています。

XamlDirect xd = XamlDirect.GetDefault();

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

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

IXamlDirect first = xd.GetXamlDirectObjectFromCollectionAt(childrenCollection, 0);
XamlDirect^ xd = XamlDirect::GetDefault();

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

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

IXamlDirect^ first = xd->GetXamlDirectObjectFromCollectionAt(childrenCollection, 0);

適用対象