IXamlDirect.ClearProperty(Object, XamlPropertyIndex) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した IXamlDirect の指定したプロパティの値をクリアします。
このドキュメントは、WinUI 2 for UWP に適用されます (Windows アプリ SDKの WinUI については、Windows アプリ SDK名前空間を参照してください)。
public:
void ClearProperty(Platform::Object ^ xamlDirectObject, XamlPropertyIndex propertyIndex);
void ClearProperty(IInspectable const& xamlDirectObject, XamlPropertyIndex const& propertyIndex);
public void ClearProperty(object xamlDirectObject, XamlPropertyIndex propertyIndex);
Public Sub ClearProperty (xamlDirectObject As Object, propertyIndex As XamlPropertyIndex)
パラメーター
- xamlDirectObject
-
Object
Platform::Object
IInspectable
特定の IXamlDirect への参照。
- propertyIndex
- XamlPropertyIndex
XamlPropertyIndex 列挙型でサポートされているプロパティの一覧からクリアするプロパティへの参照。
例
次の例は、XamlDirect API を使用して Border 要素の MinHeight プロパティの値をクリアする方法を示しています。
XamlDirect xd = XamlDirect.GetDefault();
IXamlDirect border = xd.CreateInstance(XamlTypeIndex.Border);
xd.ClearProperty(border, XamlPropertyIndex.FrameworkElement_MinHeight);
XamlDirect^ xd = XamlDirect::GetDefault();
IXamlDirect^ border = xd->CreateInstance(XamlTypeIndex::Border);
xd->ClearProperty(border, XamlPropertyIndex::FrameworkElement_MinHeight);