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:
|
Example
The following example sets the ImageAlign property of the Image control:
<form runat="server"> <asp:Image id="Img1" runat="server" ImageUrl="img.gif" ImageAlign="Middle" /> </form>
Example
- Set Alignment for Image Control