HtmlInputImage.Border プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HtmlInputImage コントロールの境界の幅を取得または設定します。
public:
property int Border { int get(); void set(int value); };
public int Border { get; set; }
member this.Border : int with get, set
Public Property Border As Integer
プロパティ値
HtmlInputImage コントロールの境界の幅 (ピクセル単位)。
例
次のコード例では、 プロパティを使用 Border してコントロールの境界線の幅を指定する方法を HtmlInputImage 示します。
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void SubmitBtn_Click(object sender, ImageClickEventArgs e)
{
// Set the inner HTML of the Message span element.
Message.InnerHtml = "The Submit button was clicked.";
}
protected void ClearBtn_Click(object sender, ImageClickEventArgs e)
{
// Set the inner HTML of the Message span element.
Message.InnerHtml = "The Clear button was clicked.";
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>
</title>
</head>
<body>
<form id="form1" runat="server">
<input type="image"
runat="server"
id="Image1"
onserverclick="SubmitBtn_Click"
alt="Submit button"
src="Submit.jpg"
style="text-align:left; border:2" />
<input type="image"
alt="Clear button"
style="text-align:right"
src="Clear.jpg"
onserverclick="ClearBtn_Click"
runat="server"
id="Image2" />
<h1>
<span id="Message"
runat="server">
</span>
</h1>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub SubmitBtn_Click(ByVal Source As Object, ByVal E As ImageClickEventArgs)
' Set the inner HTML of the Message span element.
Message.InnerHtml = "The Submit button was clicked."
End Sub
Sub ClearBtn_Click(ByVal Source As Object, ByVal E As ImageClickEventArgs)
' Set the inner HTML of the Message span element.
Message.InnerHtml = "The Clear button was clicked."
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>
</title>
</head>
<body>
<form id="form1" runat="server">
<input type="image"
alt="Submit button"
style="text-align:left; border:2"
src="Submit.jpg"
onserverclick="SubmitBtn_Click"
runat="server" />
<input type="image"
alt="Clear button"
style="text-align:right; border:2"
src="Clear.jpg"
onserverclick="ClearBtn_Click"
runat="server" />
<h1>
<span id="Message"
runat="server">
</span>
</h1>
</form>
</body>
</html>
注釈
コントロールの Border 境界線の幅を指定するには、 プロパティを HtmlInputImage 使用します。
注意
このプロパティは、すべてのブラウザーでサポートされているわけではありません。 ブラウザーで互換性を確認してください。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET