MultiBindingExpression.BindingExpressions Property

Definition

Gets the collection of BindingExpression objects in this instance of MultiBindingExpression.

public:
 property System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Data::BindingExpressionBase ^> ^ BindingExpressions { System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Data::BindingExpressionBase ^> ^ get(); };
public System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Data.BindingExpressionBase> BindingExpressions { get; }
member this.BindingExpressions : System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Data.BindingExpressionBase>
Public ReadOnly Property BindingExpressions As ReadOnlyCollection(Of BindingExpressionBase)

Property Value

A read-only collection of the BindingExpression objects. Even though the return type is a collection of BindingExpressionBase objects the returned collection would only contain BindingExpression objects because the MultiBinding class currently only supports Binding objects.

Applies to