DataBindingCollectionConverter Class
.NET Framework 2.0
NOTE: This class is now obsolete.
Provides a type converter for DataBindingCollection objects. Namespace: System.Web.UI.DesignAssembly: System.Design (in system.design.dll)
[ObsoleteAttribute(L"Use of this type is not recommended because DataBindings editing is launched via a DesignerActionList instead of the property grid. http://go.microsoft.com/fwlink/?linkid=14202")] public ref class DataBindingCollectionConverter : public TypeConverter
/** @attribute ObsoleteAttribute("Use of this type is not recommended because DataBindings editing is launched via a DesignerActionList instead of the property grid. http://go.microsoft.com/fwlink/?linkid=14202") */
public class DataBindingCollectionConverter extends TypeConverter
ObsoleteAttribute("Use of this type is not recommended because DataBindings editing is launched via a DesignerActionList instead of the property grid. http://go.microsoft.com/fwlink/?linkid=14202") public class DataBindingCollectionConverter extends TypeConverter
This type converter calls the base System.ComponentModel.TypeConverter.ConvertTo method for all destination types except String, for which an empty string ("") is returned.
// Associates the DataBindingCollectionConverter // with a DataBindingCollection property. public: [TypeConverterAttribute(DataBindingCollectionConverter::typeid)] property DataBindingCollection^ dataBindings { DataBindingCollection^ get() { return bindings; } void set( DataBindingCollection^ value ) { bindings = value; } } private: DataBindingCollection^ bindings;
// Associates the DataBindingCollectionConverter
// with a DataBindingCollection property.
/** @attribute TypeConverterAttribute(DataBindingCollectionConverter.class)
*/
/** @property
*/
public DataBindingCollection get_dataBindings()
{
return bindings;
} //get_dataBindings
/** @property
*/
public void set_dataBindings(DataBindingCollection value)
{
bindings = value;
} //set_dataBindings
private DataBindingCollection bindings;
System.Object
System.ComponentModel.TypeConverter
System.Web.UI.Design.DataBindingCollectionConverter
System.ComponentModel.TypeConverter
System.Web.UI.Design.DataBindingCollectionConverter
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.
Show: