public virtual string Value { get; set; }
Public Overridable Property Value As String
Get
Set
public:
virtual property String^ Value {
String^ get ();
void set (String^ value);
}
abstract Value : string with get, set
override Value : string with get, set
If the ValueLocation property is set to INLINE or a data type, this property contains the actual value in string form. If it is set to some other value, this property contains a pointer to the actual value (i.e. a URL, content ID, etc). In such cases, the value is probably not encoded.
This property can be used to set or get the property value in its decoded form. For setting or getting the value in its encoded form, use the EncodedValue property instead.
Derived classes can override this to parse the value and provide access to it via type-specific value properties. If this property is overridden, override EncodedValue as well to ensure the value is stored correctly in either form.