DataMemberConverter Class
Assembly: System.Design (in system.design.dll)
DataMemberConverter provides methods that can retrieve a list of data members from the current data source of a design-time component.
This type converter is used by Visual Studio 2005 to provide the values that appear in the list of data members in the Properties window.
Caution |
|---|
| You should never access a type converter directly. Instead, call the appropriate converter by using TypeDescriptor. For more information, see the examples in the TypeConverter base class. |
For more information about type converters, see the TypeConverter base class and How to: Implement a Type Converter.
// Associates the DataMemberConverter with a string property. public: [TypeConverterAttribute(DataMemberConverter::typeid)] property String^ dataMember { String^ get() { return member; } void set( String^ value ) { member = value; } } private: String^ member;
// Associates the DataMemberConverter with a string property.
/** @attribute TypeConverterAttribute(DataMemberConverter.class)
*/
/** @property
*/
public String get_dataMember()
{
return member;
} //get_dataMember
/** @property
*/
public void set_dataMember(String value)
{
member = value;
} //set_dataMember
private String member;
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Caution