TypeConverterAttribute 생성자

정의

TypeConverterAttribute 클래스의 새 인스턴스를 초기화합니다.

오버로드

TypeConverterAttribute()

기본 형식 변환기를 사용하여 TypeConverterAttribute 클래스의 새 인스턴스를 초기화합니다. 기본 형식 변환기는 빈 문자열("")입니다.

TypeConverterAttribute(String)

지정된 형식 이름을 이 특성이 바인딩되는 개체의 데이터 변환기로 사용하여 TypeConverterAttribute 클래스의 새 인스턴스를 초기화합니다.

TypeConverterAttribute(Type)

지정된 형식을 이 특성이 바인딩되는 개체의 데이터 변환기로 사용하여 TypeConverterAttribute 클래스의 새 인스턴스를 초기화합니다.

TypeConverterAttribute()

Source:
TypeConverterAttribute.cs
Source:
TypeConverterAttribute.cs
Source:
TypeConverterAttribute.cs

기본 형식 변환기를 사용하여 TypeConverterAttribute 클래스의 새 인스턴스를 초기화합니다. 기본 형식 변환기는 빈 문자열("")입니다.

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

설명

데이터 변환을 제공하는 클래스는 에서 TypeConverter상속되어야 합니다.

추가 정보

적용 대상

TypeConverterAttribute(String)

Source:
TypeConverterAttribute.cs
Source:
TypeConverterAttribute.cs
Source:
TypeConverterAttribute.cs

지정된 형식 이름을 이 특성이 바인딩되는 개체의 데이터 변환기로 사용하여 TypeConverterAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 TypeConverterAttribute(System::String ^ typeName);
public TypeConverterAttribute (string typeName);
new System.ComponentModel.TypeConverterAttribute : string -> System.ComponentModel.TypeConverterAttribute
Public Sub New (typeName As String)

매개 변수

typeName
String

이 특성이 바인딩되는 개체의 데이터 변환에 사용할 클래스의 정규화된 이름입니다.

설명

데이터 변환을 제공하는 클래스는 에서 TypeConverter상속되어야 합니다.

추가 정보

적용 대상

TypeConverterAttribute(Type)

Source:
TypeConverterAttribute.cs
Source:
TypeConverterAttribute.cs
Source:
TypeConverterAttribute.cs

지정된 형식을 이 특성이 바인딩되는 개체의 데이터 변환기로 사용하여 TypeConverterAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 TypeConverterAttribute(Type ^ type);
public TypeConverterAttribute (Type type);
new System.ComponentModel.TypeConverterAttribute : Type -> System.ComponentModel.TypeConverterAttribute
Public Sub New (type As Type)

매개 변수

type
Type

이 특성이 바인딩되는 개체의 데이터 변환에 사용할 변환기 클래스의 형식을 나타내는 Type입니다.

설명

데이터 변환을 제공하는 클래스는 에서 TypeConverter상속되어야 합니다.

추가 정보

적용 대상