Share via


HTMLBodyPart Property

Topic Last Modified: 2006-12-01

The BodyPart object containing the HTML representation of the message. This property is read-only.

Applies To

IMessage Interface

Type Library

Microsoft CDO for Exchange 2000 Library

DLL Implemented In

CDOEX.DLL

Syntax

Property HTMLBodyPart As IBodyPart

HRESULT get_HTMLBodyPart(IBodyPart** pVal);

Parameters

Remarks

The HTMLBodyPart property can be used to quickly access a reference to the BodyPart object that contains the HTML portion of the message (if any). That is, rather than having to enumerate the BodyPart hierarchy of the message seeking the object with Content-Type set to "text/html," you can use HTMLBodyPart to return a reference immediately. A similar mechanism is available for the text/plain portion of the message (if any) using the IMessage.TextBody and IMessage.TextBodyPart properties.

The content of the BodyPart object referenced by HTMLBodyPart can be updated using the IMessage.HTMLBody property. The HTMLBody property can only be used to update the contents, not the mail headers themselves.

CDO returns an error if the body part does not exist.