ImageAlign Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the alignment of an image in relation to the text of a Web page.
public enum class ImageAlign
public enum ImageAlign
type ImageAlign =
Public Enum ImageAlign
- Inheritance
Fields
Name | Value | Description |
---|---|---|
NotSet | 0 | The alignment is not set. |
Left | 1 | The image is aligned on the left edge of the Web page with text wrapping on the right. |
Right | 2 | The image is aligned on the right edge of the Web page with text wrapping on the left. |
Baseline | 3 | The lower edge of the image is aligned with the lower edge of the first line of text. |
Top | 4 | The upper edge of the image is aligned with the upper edge of the highest element on the same line. |
Middle | 5 | The middle of the image is aligned with the lower edge of the first line of text. |
Bottom | 6 | The lower edge of the image is aligned with the lower edge of the first line of text. |
AbsBottom | 7 | The lower edge of the image is aligned with the lower edge of the largest element on the same line. |
AbsMiddle | 8 | The middle of the image is aligned with the middle of the largest element on the same line. |
TextTop | 9 | The upper edge of the image is aligned with the upper edge of the highest text on the same line. |
Remarks
The ImageAlign enumeration represents the alignment options for an image relative to the text of a Web page.