AttributesSave Method (IMElement)
list of attributes
Saves all attributes to string.
Syntax
Sub AttributesSave( _
   ByRef _pbsAttributesList As String _
) 
void AttributesSave( 
   out string _pbsAttributesList
)
procedure AttributesSave( 
   Out  _pbsAttributesList: String
); 
void AttributesSave( 
   [PARAMFLAG::Out] BSTR* _pbsAttributesList
) 

Parameters

_pbsAttributesList
list of attributes
Example
Dim myList As String
myAttributes.AttributesSave(myList)
string myList;
myAttributes.AttributesSave(out myList);
var
myList: string;
begin
myAttributes.AttributesSave(myList);
end;
See Also

Reference

IMElement Interface
IMElement Members