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