Binding::IsBinding Property

 

Gets a value indicating whether the binding is active.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property bool IsBinding {
	bool get();
}

Property Value

Type: System::Boolean

true if the binding is active; otherwise, false.

A binding is active when it meets these conditions:

The following code example prints the PropertyName and IsBinding value for each Binding on a form.

private:
   void PrintBindingIsBinding()
   {
      for each ( Control^ c in this->Controls )
      {
         for each ( Binding^ b in c->DataBindings )
         {
            Console::WriteLine( "\n {0}", c );
            Console::WriteLine( "{0} IsBinding: {1}",
               b->PropertyName, b->IsBinding );
         }
      }
   }

.NET Framework
Available since 1.1
Return to top
Show: