Inline Property

<< Click to Display Table of Contents >>

Navigation:  Reference > MailAttachment >

Inline Property

 

Inline property specifies whether the attachment is inline (embedded in the message).

 

Syntax

 

[Visual Basic]


objMailAttachment.Inline = True

 

[VBScript]


objMailAttachment.Inline = True

 

[C#]


objMailAttachment.Inline = true;

 

[C++]


HRESULT get_Inline(VARIANT_BOOL*);

HRESULT put_Inline(VARIANT_BOOL);

 

spMailAttachment->PutInline(VARIANT_TRUE);

 

 

Remarks

 

Default value of Inline property is False. Set Inline property to True for embedded images. Please refer to the EmbeddedImages sample for details.