//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.Web.UI.WebControls { using System; /// /// /// Specifies the alignment of /// images within the text flow on the page. /// /// public enum ImageAlign { /// /// /// The alignment is not set. /// /// NotSet = 0, /// /// The image is aligned to the left with /// text wrapping on the right. /// Left = 1, /// /// The image is aligned to the right with /// text wrapping on the left. /// Right = 2, /// /// The bottom of the image is aligned with the bottom of the first line of wrapping /// text. /// Baseline = 3, /// /// The image is aligned with the top of the the highest element on the same line. /// Top = 4, /// /// The middle of the image is aligned with the bottom of the first /// line of wrapping text. /// Middle = 5, /// /// The bottom of the image is aligned with the bottom of the first line of wrapping text. /// Bottom = 6, /// /// The bottom of the image is aligned with the bottom /// of the largest element on the same line. /// AbsBottom = 7, /// /// The middle of the image is aligned with the middle of the largest element on the /// same line. /// AbsMiddle = 8, /// /// The image is aligned with the top of the the highest text on the same /// line. /// TextTop = 9 } }