Image.ImageAlign 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 Image 控制項相對於 Web 網頁上其他項目的對齊方式。
public:
virtual property System::Web::UI::WebControls::ImageAlign ImageAlign { System::Web::UI::WebControls::ImageAlign get(); void set(System::Web::UI::WebControls::ImageAlign value); };
[System.ComponentModel.Bindable(true)]
public virtual System.Web.UI.WebControls.ImageAlign ImageAlign { get; set; }
public virtual System.Web.UI.WebControls.ImageAlign ImageAlign { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.ImageAlign : System.Web.UI.WebControls.ImageAlign with get, set
member this.ImageAlign : System.Web.UI.WebControls.ImageAlign with get, set
Public Overridable Property ImageAlign As ImageAlign
屬性值
其中一個 ImageAlign 值。 預設為 NotSet
。
- 屬性
例外狀況
指定的值不是其中一個 ImageAlign 值。
範例
下列範例示範如何使用 ImageAlign 屬性來指定控制項相對於網頁上其他元素的 Image 對齊方式。
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Image Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Image Example</h3>
<asp:Image id="Image1" runat="server"
AlternateText="Image text"
ImageAlign="left"
ImageUrl="images/image1.jpg"/>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Image Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Image Example</h3>
<asp:Image id="Image1" runat="server"
AlternateText="Image text"
ImageAlign="left"
ImageUrl="images/image1.jpg"/>
</form>
</body>
</html>
備註
ImageAlign使用 屬性來指定或決定影像相對於網頁上其他元素的對齊方式。 下表列出可能的對齊方式。
對齊 | 描述 |
---|---|
NotSet |
未設定對齊。 |
Left |
影像在 Web 網頁的左邊緣對齊而文字在右邊換行。 |
Right |
影像在 Web 網頁的右邊緣對齊而文字在左邊換行。 |
Baseline |
影像的下邊緣與第一行文字的下邊緣對齊。 |
Top |
影像的上邊緣與同一行最高項目的上邊緣對齊。 |
Middle |
影像的中間與第一行文字的下邊緣對齊。 |
Bottom |
影像的下邊緣與第一行文字的下邊緣對齊。 |
AbsBottom |
影像的下邊緣與同一行最大項目的下邊緣對齊。 |
AbsMiddle |
影像的中間與同一行最大項目的中間對齊。 |
TextTop |
影像的上邊緣與同一行最高文字的上邊緣對齊。 |