| ||
version 1.5
Property Get ParentObject As rtObject Object that contains the current object. Independent objects - instantiated using constructor New and top level objects do not have a ParentObject and property returns Nothing.
Example - a rtGraphic object in paragraph. Dim g as rtGraphic Set g = paragraph.getFirst(RT_OBJ_GRAPHIC)
In this case the following statement is true: g.ParentObject is paragraph
|