次の方法で共有


HtmlInputImage.Border プロパティ

HtmlInputImage コントロールの境界の幅を取得または設定します。

名前空間: System.Web.UI.HtmlControls
アセンブリ: System.Web (system.web.dll 内)

構文

'宣言
Public Property Border As Integer
'使用
Dim instance As HtmlInputImage
Dim value As Integer

value = instance.Border

instance.Border = value
public int Border { get; set; }
public:
property int Border {
    int get ();
    void set (int value);
}
/** @property */
public int get_Border ()

/** @property */
public void set_Border (int value)
public function get Border () : int

public function set Border (value : int)
適用できません。

プロパティ値

HtmlInputImage コントロールの境界の幅 (ピクセル単位)。

解説

Border プロパティを使用して HtmlInputImage コントロールの境界の幅を指定します。

メモメモ :

このプロパティは、すべてのブラウザではサポートされていません。使用するブラウザで互換性を確認してください。

使用例

Border プロパティを使用して、HtmlInputImage コントロールの境界の幅を指定する方法を次のコード例に示します。

<%@ 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>
<%@ 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="JScript" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script language="JSCRIPT" runat="server">

   function SubmitBtn_Click(source : Object, e : ImageClickEventArgs)
   {
    
     // Set the inner HTML of the Message span element.
     Message.InnerHtml = "The Submit button was clicked."

   }
 
   function ClearBtn_Click(source : Object, e : ImageClickEventArgs)
   {

     // 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"
                alt="Submit button"
                src="Submit.jpg" 
                onserverclick="SubmitBtn_Click" 
                runat="server"
                style="text-align:left; border:2"
                id="Image1" />

         <input type="image" 
                alt="Clear button"
                style="text-align:right; border:2"
                src="Clear.jpg" 
                onserverclick="ClearBtn_Click" 
                runat="server"
                id="Image2" />
 
         <h1> 
         
         <span id="Message" 
               runat="server">
         </span>

         </h1>

      </form>

   </body>

</html>

プラットフォーム

Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition

Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。

バージョン情報

.NET Framework

サポート対象 : 3.0,2.0,1.1,1.0

参照

関連項目

HtmlInputImage クラス
HtmlInputImage メンバ
System.Web.UI.HtmlControls 名前空間

その他の技術情報

HTML サーバー コントロール