Inline Property
Previous  Top  Next


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.