DataBindingCollectionConverter Class
.NET Framework 3.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
Not applicable.
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;
- SecurityPermission for calling unmanaged code. Demand value: Demand; Associated enumeration: UnmanagedCode.
System.Object
System.ComponentModel.TypeConverter
System.Web.UI.Design.DataBindingCollectionConverter
System.ComponentModel.TypeConverter
System.Web.UI.Design.DataBindingCollectionConverter
Community Additions
ADD
Show: