AttachmentType.IsInline Property
The IsInline property gets or sets a Boolean value that specifies whether the attachment appears inline within an item.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property IsInline As Boolean
Get
Set
'Usage
Dim instance As AttachmentType
Dim value As Boolean
value = instance.IsInline
instance.IsInline = value
public bool IsInline { get; set; }
Property Value
Type: System.Boolean
The value of the IsInline property is true if the attachment appears inline; otherwise the value is false.
Remarks
You must set the IsInlineSpecified property to true so that the IsInline property is serialized into the SOAP request.
See Also