ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









HtmlImagedisposable

System.Web.UI.HtmlControls (system.web.dll)class

This class represents the HTML <img> tag,
which is used to display a picture file specified by a URL. You can
set various properties for this control, including the image file
(Src), and the alignment and size of the picture.
The Alt property specifies the alternate text,
which will appear in place of the image if it cannot be downloaded,
and may be displayed as a tooltip over a successfully downloaded
image in uplevel browsers.

public class 

HtmlImage : HtmlControl {
// Public Constructors
public

HtmlImage ( );
// Public Instance Properties
public string

Align {set; get; }
public string

Alt {set; get; }
public int

Border {set; get; }
public int

Height {set; get; }
public string

Src {set; get; }
public int

Width {set; get; }
// Protected Instance Methods
protected override void

RenderAttributes (System.Web.UI.HtmlTextWriter

writer ); // overrides HtmlControl
}



Hierarchy


System.Object
System.Web.UI.Control(System.ComponentModel.IComponent,
System.IDisposable
,
System.Web.UI.IParserAccessor,
System.Web.UI.IDataBindingsAccessor)

HtmlControl(System.Web.UI.IAttributeAccessor)
HtmlImage


/ 873