返回指定对象的父对象。只读。
本示例可实现的功能为:显示一个文档属性的父对象名。该过程需要有一个有效的DocumentProperty 对象作参数。
Sub DisplayParent(dp as DocumentProperty) MsgBox dp.Parent.Name End Sub