ElementParentGet Method (IMElement)
parent element
Gets an parent element of the current element.
Syntax
Sub ElementParentGet( _
   ByRef _ppParent As MElement _
) 
void ElementParentGet( 
   out MElement _ppParent
)
procedure ElementParentGet( 
   Out  _ppParent: MElement
); 
void ElementParentGet( 
   [PARAMFLAG::Out] MElement* _ppParent
) 

Parameters

_ppParent
parent element
Example
Dim myParent As MElement
myElement.ElementParentGet(myParent)
MElement myParent;
myElement.ElementParentGet(out myParent);
myParent: MElement;

myElement.ElementParentGet(out myParent);
See Also

Reference

IMElement Interface
IMElement Members