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 |
Define the arrangement of the image. Possible values:
|
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