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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









CssStyleCollection

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

This class contains a name-value collection of cascading style sheet
(CSS) attributes for a specific control. CSS styles are used to
configure many aspects of a control's appearance
(such as font and color) and are supported for both web controls and
HTML controls. A CssStyleCollection is provided
through the
System.Web.UI.HtmlControls.HtmlControl.Style and
System.Web.UI.WebControls.WebControl.Style
properties. This collection is similar to the
AttributeCollection class, and you can retrieve
values by using the specific attribute name or enumerating through
the read-only Keys collection.

public sealed class 

CssStyleCollection {
// Public Instance Properties
public int

Count {get; }
public ICollection

Keys {get; }
public string

this [string

key ]{set; get; }
// Public Instance Methods
public void

Add (string

key , string

value );
public void

Clear ( );
public void

Remove (string

key );
}



Returned By


AttributeCollection.CssStyle,
System.Web.UI.HtmlControls.HtmlControl.Style,
System.Web.UI.WebControls.WebControl.Style


/ 873