Switch.Value Property

Definition

Gets or sets the value of the switch.

protected:
 property System::String ^ Value { System::String ^ get(); void set(System::String ^ value); };
public:
 property System::String ^ Value { System::String ^ get(); void set(System::String ^ value); };
protected string Value { get; set; }
public string Value { get; set; }
member this.Value : string with get, set
Protected Property Value As String
Public Property Value As String

Property Value

A string representing the value of the switch.

Exceptions

The value is null.

-or-

The value does not consist solely of an optional negative sign followed by a sequence of digits ranging from 0 to 9.

-or-

The value represents a number less than Int32.MinValue or greater than Int32.MaxValue.

Remarks

The OnValueChanged method is called when the value of the Value property is changed. The OnValueChanged method parses the value of this property and converts it to an integer value, which is then used to set the SwitchSetting property.

Notes to Inheritors

You should override the OnValueChanged() method and provide a conversion operation that sets the appropriate SwitchSetting value for your switch.

Applies to