Binding.IsBinding Property  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the binding is active.
public:
 property bool IsBinding { bool get(); };public bool IsBinding { get; }member this.IsBinding : boolPublic ReadOnly Property IsBinding As BooleanProperty Value
true if the binding is active; otherwise, false.
Examples
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 );
         }
      }
   }
private void PrintBindingIsBinding()
{
   foreach(Control c in this.Controls)
   {
      foreach(Binding b in c.DataBindings)
      {
         Console.WriteLine("\n" + c.ToString());
         Console.WriteLine(b.PropertyName + " IsBinding: " 
             + b.IsBinding);
      }
   }
}
Private Sub PrintBindingIsBinding
    Dim c As Control
    Dim b As Binding
    For Each c In Me.Controls
        For Each b in c.DataBindings
            Console.WriteLine (ControlChars.CrLf & c.ToString)
            Console.WriteLine (b.PropertyName & " IsBinding: " & _
                b.IsBinding)
        Next
    Next
End Sub
Remarks
A binding is active when it meets these conditions:
- All its properties are set. 
- The user did not call ResumeBinding or SuspendBinding on the BindingManagerBase that the Binding belongs to. 
- The control to which the Binding belongs has been created.