共用方式為


IXamlDirect.ClearProperty(Object, XamlPropertyIndex) 方法

定義

清除指定 IXamlDirect上的指定屬性值。

本檔適用于 Windows 應用程式 SDK 中適用于 WinUI 的 WinUI 2 for UWP (,請參閱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);

適用於