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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









FontNamesConverter

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

public class 

FontNamesConverter : System.ComponentModel.TypeConverter {
// Public Constructors
public

FontNamesConverter ( );
// Public Instance Methods
public override bool

CanConvertFrom (System.ComponentModel.ITypeDescriptorContext

context ,
Type

sourceType ); // overrides System.ComponentModel.TypeConverter
public override object

ConvertFrom (System.ComponentModel.ITypeDescriptorContext

context ,
System.Globalization.CultureInfo

culture , object

value ); // overrides System.ComponentModel.TypeConverter
public override object

ConvertTo (System.ComponentModel.ITypeDescriptorContext

context ,
System.Globalization.CultureInfo

culture , object

value , Type

destinationType );
// overrides System.ComponentModel.TypeConverter
}


The FontNamesConverter class is a type converter
that can convert between a font name array and a string that contains
a list of font names separated by commas (as often appears in an HTML
page). This class is never accessed directly. You can access its
functionality through the
System.ComponentModel.TypeDescriptor helper class.


Hierarchy


System.Object
System.ComponentModel.TypeConverter
FontNamesConverter


/ 873