ASP.NET ImageAlign Property

Definition and Usage

The ImageAlign property is used to set or return the alignment of the image.

Syntax

<asp:Image ImageAlign="align" runat="server" />
Property Description
align

Specifies the arrangement of the image.

Possible Values:

  • NotSet
  • AbsBottom
  • AbsMiddle
  • BaseLine
  • Bottom
  • Left
  • Middle
  • Right
  • TextTop
  • Top

Example

The following example sets the ImageAlign property for the Image control:

<form runat="server">
<asp:Image id="Img1" runat="server" 
ImageUrl="img.gif" ImageAlign="Middle" />
</form>

Example

Set Alignment for Image Control