LinkArea.LinkAreaConverter Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides a type converter to convert LinkArea.LinkAreaConverter objects to and from various other representations.
public: ref class LinkArea::LinkAreaConverter : System::ComponentModel::TypeConverter
public class LinkArea.LinkAreaConverter : System.ComponentModel.TypeConverter
type LinkArea.LinkAreaConverter = class
inherit TypeConverter
Public Class LinkArea.LinkAreaConverter
Inherits TypeConverter
- Inheritance
Remarks
For more information about type converters, see the TypeConverter base class.
Note
You should never create an instance of a LinkArea.LinkAreaConverter. Instead, call the GetConverter method of TypeDescriptor. For more information, see the examples in the TypeConverter base class.
Constructors
| Name | Description |
|---|---|
| LinkArea.LinkAreaConverter() |
Initializes a new instance of the LinkArea.LinkAreaConverter class. |
Methods
| Name | Description |
|---|---|
| CanConvertFrom(ITypeDescriptorContext, Type) |
Determines if this converter can convert an object in the given source type to the native type of the converter. |
| CanConvertTo(ITypeDescriptorContext, Type) |
Gets a value indicating whether this converter can convert an object to the given destination type using the context. |
| ConvertFrom(ITypeDescriptorContext, CultureInfo, Object) |
Converts the given object to the converter's native type. |
| ConvertTo(ITypeDescriptorContext, CultureInfo, Object, Type) |
Converts the given object to another type. The most common types to convert are to and from a string object. The default implementation will make a call to ToString() on the object if the object is valid and if the destination type is string. If this cannot convert to the destination type, this will throw a NotSupportedException. |
| CreateInstance(ITypeDescriptorContext, IDictionary) |
Creates an instance of this type, given a set of property values for the object. This is useful for objects that are immutable, but still want to provide changeable properties. |
| GetCreateInstanceSupported(ITypeDescriptorContext) |
Determines if changing a value on this object should require a call to CreateInstance(ITypeDescriptorContext, IDictionary) to create a new value. |
| GetProperties(ITypeDescriptorContext, Object, Attribute[]) |
Retrieves the set of properties for this type. |
| GetPropertiesSupported(ITypeDescriptorContext) |
Determines if this object supports properties. By default, this is |