UBorder::GetShowEffectWhenDisabled
#include "Components/Border.h"
Access: public
Specifiers: const
Description
Returns whether the border darkens/desaturates itself using the standard disabled-widget effect when its enabled state is false.
Caveats & Gotchas
- • Not a UFUNCTION — it's a C++-only accessor; the corresponding property is grouped under AdvancedDisplay so it's hidden by default in the Details panel.
- • This only controls the visual disabled effect — it has no effect on whether the border still receives input; use SetIsEnabled for that.
Signature
UMG_API bool GetShowEffectWhenDisabled() const; Return Type
bool Example
Check the disabled-effect flag from C++ C++
bool bShowsDisabledEffect = MyBorder->GetShowEffectWhenDisabled(); See Also
Tags
Version History
Introduced in: 4.0
| Version | Status | Notes |
|---|---|---|
| 5.6 | stable | — |
Feedback
Was this helpful?