DBindingCollection Interface

Definition

Caution

Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862

Important

This API is not CLS-compliant.

CLS-compliant alternative
System.Windows.Forms.BindingsCollection

Provides an interface to replace COM-based data binding in an application upgraded from Visual Basic 6.0.

public interface class DBindingCollection : System::Collections::IEnumerable
[System.CLSCompliant(false)]
public interface DBindingCollection : System.Collections.IEnumerable
[System.CLSCompliant(false)]
[System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")]
public interface DBindingCollection : System.Collections.IEnumerable
[<System.CLSCompliant(false)>]
type DBindingCollection = interface
    interface IEnumerable
[<System.CLSCompliant(false)>]
[<System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")>]
type DBindingCollection = interface
    interface IEnumerable
Public Interface DBindingCollection
Implements IEnumerable
Derived
Attributes
Implements

Remarks

Note

Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic 2008. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

Properties

Count

Gets the total number of bindings in the DBindingCollection.

DataMember

Gets or sets the data member for a DBindingCollection.

DataSource

Gets or sets the data source for a DBindingCollection.

Item[Object]

Gets the DBinding at the specified index.

UpdateMode

Gets or sets the UpdateMode for a DBindingCollection.

Methods

Add(Object, String, String, IDataFormatDisp, String)

Adds a DBinding to a DBindingCollection.

Clear()

Clears the collection of binding objects.

GetEnumerator()

Returns an enumerator that iterates through a collection.

(Inherited from IEnumerable)
Remove(Object)

Removes a DBinding interface from a DBindingCollection.

UpdateControls()

Gets the current row from the DBindingCollection object's data source and resets the contents of controls bound through the object.

Extension Methods

Cast<TResult>(IEnumerable)

Casts the elements of an IEnumerable to the specified type.

OfType<TResult>(IEnumerable)

Filters the elements of an IEnumerable based on a specified type.

AsParallel(IEnumerable)

Enables parallelization of a query.

AsQueryable(IEnumerable)

Converts an IEnumerable to an IQueryable.

Applies to