DataFieldConverter Class
Assembly: System.Design (in system.design.dll)
DataFieldConverter can retrieve a list of data fields 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 fields 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 DataFieldConverter with a string property. public: [TypeConverterAttribute(DataMemberConverter::typeid)] property String^ dataField { String^ get() { return field; } void set( String^ value ) { field = value; } } private: String^ field;
// Associates the DataFieldConverter with a string property.
/** @attribute TypeConverterAttribute(DataMemberConverter.class)
*/
/** @property
*/
public String get_dataField()
{
return field;
} //get_dataField
/** @property
*/
public void set_dataField(String value)
{
field = value;
} //set_dataField
private String field;
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