Navigation
API > API/Editor > API/Editor/UMGEditor
Controls the level of support you want to have for widget property binding.
| Name | EPropertyBindingPermissionLevel |
| Type | enum |
| Header File | /Engine/Source/Editor/UMGEditor/Public/WidgetEditingProjectSettings.h |
| Include Path | #include "WidgetEditingProjectSettings.h" |
Syntax
enum EPropertyBindingPermissionLevel
{
Allow,
Prevent,
PreventAndWarn,
PreventAndError,
}
Values
| Name | Remarks |
|---|---|
| Allow | Freely allow the use of property binding. |
| Prevent | Prevent any new property binding, will still allow you to edit widgets with property binding, but the buttons will be missing on all existing widgets that don't have bindings. |
| PreventAndWarn | Prevent any new property binding, and warn when compiling any existing bindings. |
| PreventAndError | Prevent any new property binding, and error when compiling any existing bindings. |