HtmlToSimpleHtmlConvertOptions Enumeration |
Defines the available flags which affect how HTML body of a message should be converted into simple HTML.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax [FlagsAttribute]
public enum HtmlToSimpleHtmlConvertOptions
<FlagsAttribute>
Public Enumeration HtmlToSimpleHtmlConvertOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
No extra processing.
|
| AddImgAltText | 1 |
The alternative text (contents of ALT element of IMG tag) will be put in simple HTML in place of this image in the original HTML.
If this flag is not set, no mention of the image will be available in the resulting simple HTML.
|
| WriteImageIfNoAlt | 2 |
If there is no alternative text for the image, the "image" string will be added as the alternative text. Has no effect if
AddImgAltText flag is not specified.
|
| MakeLinkForImg | 4 |
Make alternative text of the original image a link to the original image. For example, if the original HTML was <img src="http://www.server.com/picture.gif" alt="Our Picture">,
the following simple HTML is produced: <a href="http://www.server.com/picture.gif">Our Picture</a>.
Has no effect if AddImgAltText flag is not specified.
|
Remarks See Also