Navigation
API > API/Plugins > API/Plugins/PropertyBindingUtils > API/Plugins/PropertyBindingUtils/FPropertyBindingBindingCollectio-
Description
Iterates through all bindings and calls the provided function on each mutable binding. That function must return whether the iteration should stop or not (i.e., EVisitResult::Break / Continue).
For read access only, consider using VisitBindings
If breaking the iteration is not required, consider using ForEachBinding or ForEachMutableBinding
| Name | VisitMutableBindings |
| Type | function |
| Header File | /Engine/Plugins/Runtime/PropertyBindingUtils/Source/PropertyBindingUtils/Public/PropertyBindingBindingCollection.h |
| Include Path | #include "PropertyBindingBindingCollection.h" |
virtual void VisitMutableBindings
(
TFunctionRef < EVisitResult &Binding )> InFunction
)
Parameters
| Name | Remarks |
|---|---|
| InFunction | Function to call on each binding and that indicates whether the visit should stop. |
See Also
-
ForEachBinding