ElementGet Method (IMElement)
type of the element
description of element in XML format
Gets whole information about the element.
Syntax
Sub ElementGet( _
   ByRef _pbsElementType As String, _
   ByRef _pbsXMLDescription As String _
) 
void ElementGet( 
   out string _pbsElementType,
   out string _pbsXMLDescription
)
procedure ElementGet( 
   Out  _pbsElementType: String;
   Out  _pbsXMLDescription: String
); 
void ElementGet( 
   [PARAMFLAG::Out] BSTR* _pbsElementType,
   [PARAMFLAG::Out] BSTR* _pbsXMLDescription
) 

Parameters

_pbsElementType
type of the element
_pbsXMLDescription
description of element in XML format
Example
Dim myType As String
Dim myDescription As String
myElement.ElementGet(myType, myDescription)
string myType;
string myDescription;
myElement.ElementGet(out myType, out myDescription); 
myType, myDescription: string;

myElement.ElementGet(myType, myDescription);
See Also

Reference

IMElement Interface
IMElement Members