Bagikan melalui


Image Konstruktor

Definisi

Menginisialisasi instans baru kelas Image.

public:
 Image();
public Image ();
Public Sub New ()

Contoh

Contoh berikut menunjukkan cara membuat dan menginisialisasi instans Image baru kelas.

Catatan

Sampel kode berikut menggunakan model kode file tunggal dan mungkin tidak berfungsi dengan benar jika disalin langsung ke file code-behind. Sampel kode ini harus disalin ke dalam file teks kosong yang memiliki ekstensi .aspx. Untuk informasi selengkapnya tentang model kode Formulir Web, lihat Model Kode Halaman Formulir Web ASP.NET.

<%@ 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>
<script language="C#" runat="server">

      void Page_Load(Object sender, EventArgs e)
      {
         Image myImage = new Image();
         myImage.AlternateText = "Image Text";
         myImage.ImageUrl = "image1.jpg";
         myImage.ImageAlign = ImageAlign.Left;
         Page.Controls.Add(myImage);

      }

   </script>

</head>
 
<body>

   <form id="form1" runat="server">

      <h3>Image Example</h3>
  
   </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>
<script language="VB" runat="server">

      Sub Page_Load(sender As Object, e As EventArgs)
         Dim myImage As New Image()
         myImage.AlternateText = "Image Text"
         myImage.ImageUrl = "image1.jpg"
         myImage.ImageAlign = ImageAlign.Left
         Page.Controls.Add(myImage)
      End Sub

   </script>

</head>
 
<body>

   <form id="form1" runat="server">

      <h3>Image Example</h3>
  
   </form>

</body>
</html>

Keterangan

Gunakan konstruktor ini untuk membuat dan menginisialisasi instans Image baru kelas.

Berlaku untuk