Specifies the value of the
DynamicProperty.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property Value As Object |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As DynamicProperty
Dim value As Object
instance.Value = value
value = instance.Value
|
| C# | |
|---|
public object Value {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property Object* get_Value();
public: __property void set_Value(
Object* value
); |
| C++/CLI | |
|---|
public:
property Object^ Value {
Object^ get();
void set (Object^ value);
} |
Return Value
An object that represents the value of the
DynamicProperty.
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also