BindableObject.SetValue メソッド

定義

オーバーロード

SetValue(BindableProperty, Object)

指定したバインド可能なプロパティの値を設定します。

SetValue(BindablePropertyKey, Object)

指定したバインド可能なプロパティの値を設定します。

SetValue(BindableProperty, Object)

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

指定したバインド可能なプロパティの値を設定します。

public:
 void SetValue(Microsoft::Maui::Controls::BindableProperty ^ property, System::Object ^ value);
public void SetValue (Microsoft.Maui.Controls.BindableProperty property, object value);
member this.SetValue : Microsoft.Maui.Controls.BindableProperty * obj -> unit
Public Sub SetValue (property As BindableProperty, value As Object)

パラメーター

property
BindableProperty

値を割り当てるバインド可能なプロパティ。

value
Object

設定する値。

例外

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

注釈

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

適用対象

SetValue(BindablePropertyKey, Object)

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

指定したバインド可能なプロパティの値を設定します。

public:
 void SetValue(Microsoft::Maui::Controls::BindablePropertyKey ^ propertyKey, System::Object ^ value);
public void SetValue (Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value);
member this.SetValue : Microsoft.Maui.Controls.BindablePropertyKey * obj -> unit
Public Sub SetValue (propertyKey As BindablePropertyKey, value As Object)

パラメーター

propertyKey
BindablePropertyKey

値を割り当てるバインド可能なプロパティを識別するキー。

value
Object

設定する値。

例外

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

指定されたバインド可能なプロパティが propertyKey 読み取り専用の場合にスローされます。

適用対象