Specifies the parent persistent object of the ObjectHolder.
Syntax
| Visual Basic (Declaration) | |
|---|
Protected Property Parent As Object |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As ObjectHolderBase
Dim value As Object
instance.Parent = value
value = instance.Parent
|
| C# | |
|---|
protected object Parent {get; set;} |
| Managed Extensions for C++ | |
|---|
protected: __property Object* get_Parent();
protected: __property void set_Parent(
Object* value
); |
| C++/CLI | |
|---|
protected:
property Object^ Parent {
Object^ get();
void set (Object^ value);
} |
Return Value
The parent persistent object associated with the ObjectHolder or null.
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also