AttributesClone Method (IMConfig)
copy of attributes
Creates a copy of attributes.
Syntax
Sub AttributesClone( _
   ByRef _ppClone As IMAttributes _
) 
void AttributesClone( 
   out IMAttributes _ppClone
)
procedure AttributesClone( 
   Out  _ppClone: IMAttributes
); 
void AttributesClone( 
   [PARAMFLAG::Out] IMAttributes* _ppClone
) 

Parameters

_ppClone
copy of attributes
Example
Dim myCloneAttributes As IMAttributes
mySourceAttributes.AttributesClone(myCloneAttributes)
IMAttributes myCloneAttributes;
mySourceAttributes.AttributesClone(out myCloneAttributes);
var
myCloneAttributes: IMAttributes;
begin
mySourceAttributes.AttributesClone(out myCloneAttributes);
end;
See Also

Reference

IMConfig Interface
IMConfig Members