DataBindingCollectionConverter クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
Use of this type is not recommended because DataBindings editing is launched via a DesignerActionList instead of the property grid. http://go.microsoft.com/fwlink/?linkid=14202
DataBindingCollection オブジェクトの型コンバーターを提供します。
public ref class DataBindingCollectionConverter : System::ComponentModel::TypeConverter
public class DataBindingCollectionConverter : System.ComponentModel.TypeConverter
[System.Obsolete("Use of this type is not recommended because DataBindings editing is launched via a DesignerActionList instead of the property grid. http://go.microsoft.com/fwlink/?linkid=14202")]
public class DataBindingCollectionConverter : System.ComponentModel.TypeConverter
type DataBindingCollectionConverter = class
inherit TypeConverter
[<System.Obsolete("Use of this type is not recommended because DataBindings editing is launched via a DesignerActionList instead of the property grid. http://go.microsoft.com/fwlink/?linkid=14202")>]
type DataBindingCollectionConverter = class
inherit TypeConverter
Public Class DataBindingCollectionConverter
Inherits TypeConverter
- 継承
- 属性
例
// Associates the DataBindingCollectionConverter
// with a DataBindingCollection property.
public:
[TypeConverterAttribute(DataBindingCollectionConverter::typeid)]
property DataBindingCollection^ dataBindings
{
DataBindingCollection^ get()
{
return bindings;
}
void set( DataBindingCollection^ value )
{
bindings = value;
}
}
private:
DataBindingCollection^ bindings;
// Associates the DataBindingCollectionConverter
// with a DataBindingCollection property.
[TypeConverterAttribute(typeof(DataBindingCollectionConverter))]
public DataBindingCollection dataBindings
{
get
{
return bindings;
}
set
{
bindings = value;
}
}
private DataBindingCollection bindings;
' Associates the DataBindingCollectionConverter
' with a DataBindingCollection property.
<TypeConverterAttribute(GetType(DataBindingCollectionConverter))> _
Public Property dataBindings() As DataBindingCollection
Get
Return bindings
End Get
Set
bindings = value
End Set
End Property
Private bindings As DataBindingCollection
注釈
この型コンバーターは、空の文字列 ("") が返される を除くStringすべての変換先の型に対して基本TypeConverter.ConvertToメソッドを呼び出します。
コンストラクター
DataBindingCollectionConverter() |
古い.
DataBindingCollectionConverter クラスのインスタンスを初期化します。 |
メソッド
CanConvertFrom(ITypeDescriptorContext, Type) |
古い.
このコンバーターが、指定したコンテキストを使用して、指定された型のオブジェクトをこのコンバーターの型に変換できるかどうかを返します。 (継承元 TypeConverter) |
CanConvertFrom(Type) |
古い.
コンバーターが特定の型のオブジェクトをコンバーターの型に変換できるかどうかを示す値を返します。 (継承元 TypeConverter) |
CanConvertTo(ITypeDescriptorContext, Type) |
古い.
このコンバーターが指定のコンテキストを使用して、オブジェクトを指定の型に変換できるかどうかを返します。 (継承元 TypeConverter) |
CanConvertTo(Type) |
古い.
コンバーターがオブジェクトを指定した型に変換できるかどうかを示す値を返します。 (継承元 TypeConverter) |
ConvertFrom(ITypeDescriptorContext, CultureInfo, Object) |
古い.
指定したコンテキストとカルチャ情報を使用して、指定したオブジェクトをこのコンバーターの型に変換します。 (継承元 TypeConverter) |
ConvertFrom(Object) |
古い.
指定した値をコンバーターの型に変換します。 (継承元 TypeConverter) |
ConvertFromInvariantString(ITypeDescriptorContext, String) |
古い.
インバリアント カルチャと指定したコンテキストを使用して、指定した文字列をコンバーターの型に変換します。 (継承元 TypeConverter) |
ConvertFromInvariantString(String) |
古い.
インバリアント カルチャを使用して、指定した文字列をコンバーターの型に変換します。 (継承元 TypeConverter) |
ConvertFromString(ITypeDescriptorContext, CultureInfo, String) |
古い.
指定したコンテキストとカルチャ情報を使用して、指定したテキストをオブジェクトに変換します。 (継承元 TypeConverter) |
ConvertFromString(ITypeDescriptorContext, String) |
古い.
指定したコンテキストを使用して、指定したテキストをオブジェクトに変換します。 (継承元 TypeConverter) |
ConvertFromString(String) |
古い.
指定したテキストをオブジェクトに変換します。 (継承元 TypeConverter) |
ConvertTo(ITypeDescriptorContext, CultureInfo, Object, Type) |
古い.
指定した型にデータ連結コレクションを変換します。 |
ConvertTo(Object, Type) |
古い.
引数を使用して、指定した値オブジェクトを、指定した型に変換します。 (継承元 TypeConverter) |
ConvertToInvariantString(ITypeDescriptorContext, Object) |
古い.
指定したコンテキストを使用して、指定した値をインバリアント カルチャを使用した文字列形式に変換します。 (継承元 TypeConverter) |
ConvertToInvariantString(Object) |
古い.
指定した値を、インバリアント カルチャを使用した文字列形式に変換します。 (継承元 TypeConverter) |
ConvertToString(ITypeDescriptorContext, CultureInfo, Object) |
古い.
指定したコンテキストとカルチャ情報を使用して、指定した値を文字列形式に変換します。 (継承元 TypeConverter) |
ConvertToString(ITypeDescriptorContext, Object) |
古い.
指定したコンテキストを使用して、指定した値を文字列形式に変換します。 (継承元 TypeConverter) |
ConvertToString(Object) |
古い.
指定した値を文字列形式に変換します。 (継承元 TypeConverter) |
CreateInstance(IDictionary) |
古い.
Object の一連のプロパティ値を指定して、そのオブジェクトを再作成します。 (継承元 TypeConverter) |
CreateInstance(ITypeDescriptorContext, IDictionary) |
古い.
この TypeConverter を関連付ける型のインスタンスを作成します。指定されたコンテキストと、与えられているオブジェクトのプロパティ値のセットを使用します。 (継承元 TypeConverter) |
Equals(Object) |
古い.
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetConvertFromException(Object) |
古い.
変換を実行できないときにスローする例外を返します。 (継承元 TypeConverter) |
GetConvertToException(Object, Type) |
古い.
変換を実行できないときにスローする例外を返します。 (継承元 TypeConverter) |
GetCreateInstanceSupported() |
古い.
このオブジェクトの値を変更するときに CreateInstance(IDictionary) メソッドを呼び出して、新しい値を作成する必要があるかどうかを返します。 (継承元 TypeConverter) |
GetCreateInstanceSupported(ITypeDescriptorContext) |
古い.
このオブジェクトの値を変更するときに、指定したコンテキストを使用して CreateInstance(IDictionary) を呼び出して、新しい値を作成する必要があるかどうかを返します。 (継承元 TypeConverter) |
GetHashCode() |
古い.
既定のハッシュ関数として機能します。 (継承元 Object) |
GetProperties(ITypeDescriptorContext, Object) |
古い.
指定したコンテキストを使用して、value パラメーターで指定された配列型のプロパティのコレクションを返します。 (継承元 TypeConverter) |
GetProperties(ITypeDescriptorContext, Object, Attribute[]) |
古い.
指定されたコンテキストと属性を使用して、値パラメーターで指定された配列型のプロパティのコレクションを返します。 (継承元 TypeConverter) |
GetProperties(Object) |
古い.
value パラメーターに指定された配列型のプロパティのコレクションを返します。 (継承元 TypeConverter) |
GetPropertiesSupported() |
古い.
オブジェクトがプロパティをサポートしているかどうかを示す値を返します。 (継承元 TypeConverter) |
GetPropertiesSupported(ITypeDescriptorContext) |
古い.
指定したコンテキストを使用して、このオブジェクトがプロパティをサポートするかどうかを返します。 (継承元 TypeConverter) |
GetStandardValues() |
古い.
型コンバーターがデザインされた対象であるデータ型の既定のコンテキストから、標準値のコレクションを返します。 (継承元 TypeConverter) |
GetStandardValues(ITypeDescriptorContext) |
古い.
フォーマット コンテキストが提供されている場合、この型コンバーターが対象とするデータ型の標準値のコレクションを返します。 (継承元 TypeConverter) |
GetStandardValuesExclusive() |
古い.
GetStandardValues() から返された標準値のコレクションが、排他的なリストかどうかを示す値を返します。 (継承元 TypeConverter) |
GetStandardValuesExclusive(ITypeDescriptorContext) |
古い.
指定したコンテキストを使用して、GetStandardValues() から返された標準値のコレクションが有効値の排他的なリストかどうかを示す値を返します。 (継承元 TypeConverter) |
GetStandardValuesSupported() |
古い.
リストから選択できる標準値セットをオブジェクトがサポートするかどうかを示す値を返します。 (継承元 TypeConverter) |
GetStandardValuesSupported(ITypeDescriptorContext) |
古い.
指定したコンテキストを使用して、リストから選択できる標準値セットをオブジェクトがサポートするかどうかを示す値を返します。 (継承元 TypeConverter) |
GetType() |
古い.
現在のインスタンスの Type を取得します。 (継承元 Object) |
IsValid(ITypeDescriptorContext, Object) |
古い.
指定した値オブジェクトが、この型に対して有効か、指定したコンテキストに対して有効かを返します。 (継承元 TypeConverter) |
IsValid(Object) |
古い.
指定した値オブジェクトが型に対して有効かどうかを示す値を返します。 (継承元 TypeConverter) |
MemberwiseClone() |
古い.
現在の Object の簡易コピーを作成します。 (継承元 Object) |
SortProperties(PropertyDescriptorCollection, String[]) |
古い.
プロパティのコレクションを並べ替えます。 (継承元 TypeConverter) |
ToString() |
古い.
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
適用対象
.NET