PropertyValueCollection.Value 属性

定义

获取或设置集合的值。

public:
 property System::Object ^ Value { System::Object ^ get(); void set(System::Object ^ value); };
public object Value { get; set; }
public object? Value { get; set; }
member this.Value : obj with get, set
Public Property Value As Object

属性值

如果集合为空,则该属性值为 null引用(在 Visual Basic 中为 Nothing)。 如果集合包含一个值,则属性值就是该值。 如果集合包含多个值,则属性值等于这些值的数组的副本。

如果设置此属性,则值将添加到 PropertyValueCollection 中。 将该属性设置为 null引用 (Nothing) 清除集合。

注解

若要添加多个值,请将此属性设置为值的数组。

适用于