System::ComponentModel::TypeConverter class
Contents
[
Hide
]TypeConverter class
Class that handles type conversion in component model. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class TypeConverter : public System::Object
Methods
Method | Description |
---|---|
ConvertFrom(const System::SharedPtr<System::Object>&) | Converts objects. |
virtual ConvertFrom(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Globalization::CultureInfo>&, const System::SharedPtr<System::Object>&) | Converts objects. |
ConvertFrom(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Globalization::CultureInfo>&, const System::String&) | Converts string to object. |
ConvertFromInvariantString(const System::String&) | Converts invariant string to object. |
ConvertFromInvariantString(const System::SharedPtr<ITypeDescriptorContext>&, const System::String&) | Converts invariant string to object. |
ConvertFromString(const System::String&) | Converts string to object. |
ConvertFromString(const System::SharedPtr<ITypeDescriptorContext>&, const System::String&) | Converts string to object. |
ConvertFromString(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Globalization::CultureInfo>&, const System::String&) | Converts string to object. |
ConvertTo(const System::SharedPtr<System::Object>&, const System::TypeInfo&) | Converts object to specific type. |
virtual ConvertTo(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Globalization::CultureInfo>&, const System::SharedPtr<System::Object>&, const System::TypeInfo&) | Converts object to specific type. |
ConvertToInvariantString(const System::SharedPtr<System::Object>&) | Converts object to invariant string. |
ConvertToInvariantString(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Object>&) | Converts object to invariant string. |
ConvertToString(const System::SharedPtr<System::Object>&) | Converts object to string. |
ConvertToString(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Object>&) | Converts object to string. |
ConvertToString(const System::SharedPtr<ITypeDescriptorContext>&, const System::SharedPtr<System::Globalization::CultureInfo>&, const System::SharedPtr<System::Object>&) | Converts object to string. |
TypeConverter() | RTTI information. |
See Also
- Class Object
- Namespace System::ComponentModel
- Library Aspose.PUB for C++