System::ComponentModel::EnumConverter クラス

EnumConverter class

EnumConverter を使用した翻訳コードがコンパイルできるようにするダミークラスです。このクラスのオブジェクトは System::MakeObject() 関数を使用してのみ割り当てるべきです。スタック上や operator new でインスタンスを作成しないでください。そうしないと実行時エラーやアサーション失敗が発生します。常にこのクラスを System::SmartPtr ポインタでラップし、そのポインタを関数の引数として渡してください。

class EnumConverter : public System::ComponentModel::TypeConverter

メソッド

メソッド説明
CanConvertFrom(const System::SharedPtr<ITypeDescriptorContext>&, const System::TypeInfo&)型が変換可能かどうかをチェックします;未実装です。
CanConvertTo(const System::SharedPtr<ITypeDescriptorContext>&, const System::TypeInfo&)型が変換可能かどうかをチェックします;未実装です。
ConvertFrom(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Globalization::CultureInfo>&, const System::SharedPtr<System::Object>&) override実際の型変換を行います;未実装です。
ConvertTo(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Globalization::CultureInfo>&, const System::SharedPtr<System::Object>&, const System::TypeInfo&) override実際の型変換を行います;未実装です。
EnumConverter(const System::TypeInfo&)RTTI 情報。
get_EnumType()使用している enum 型 EnumConverter を取得します; 未実装。

参照