次の方法で共有


BindableObject.ClearValue メソッド

定義

オーバーロード

ClearValue(BindableProperty)

バインド可能なプロパティに対して以前に設定されたすべての値をクリアします。

ClearValue(BindablePropertyKey)

バインド可能なプロパティに対して以前に設定された値をクリアします。その値は、そのキーで識別されます。

ClearValue(BindableProperty)

ソース:
BindableObject.cs
ソース:
BindableObject.cs

バインド可能なプロパティに対して以前に設定されたすべての値をクリアします。

public:
 void ClearValue(Microsoft::Maui::Controls::BindableProperty ^ property);
public void ClearValue (Microsoft.Maui.Controls.BindableProperty property);
member this.ClearValue : Microsoft.Maui.Controls.BindableProperty -> unit
Public Sub ClearValue (property As BindableProperty)

パラメーター

property
BindableProperty

BindableProperty をクリアする対象。

例外

次の場合に property スローされます null

注釈

読み取り専用の場合 property 、何も起こりません。

適用対象

ClearValue(BindablePropertyKey)

ソース:
BindableObject.cs
ソース:
BindableObject.cs

バインド可能なプロパティに対して以前に設定された値をクリアします。その値は、そのキーで識別されます。

public:
 void ClearValue(Microsoft::Maui::Controls::BindablePropertyKey ^ propertyKey);
public void ClearValue (Microsoft.Maui.Controls.BindablePropertyKey propertyKey);
member this.ClearValue : Microsoft.Maui.Controls.BindablePropertyKey -> unit
Public Sub ClearValue (propertyKey As BindablePropertyKey)

パラメーター

propertyKey
BindablePropertyKey

値をクリアするバインド可能なプロパティを識別するキー。

例外

次の場合に propertyKey スローされます null

読み取り専用プロパティの場合 propertyKey にスローされます。

適用対象