Skip to main content

CheckBox

Base:
UCheckBox
Type:
UNCheckBox
Header File:
NexusUI/Public/Components/NCheckBox.h

UNCheckBox

An extension on the UMG UCheckBox which adds functionality to set its value without broadcasting / triggering events, or so we thought.

warning

The UCheckBox does not trigger events when it is altered. It does not match the tradition UMG trope for some reason.

UFunctions​

Set IsChecked (No Broadcast)​

	/**
* Sets if the UCheckBox is checked without triggering exposed event bindings.
* @param bNewValue The new value.
*/
void SetIsChecked_NoBroadcast(const bool bNewValue);

Set CheckedState (No Broadcast)​

	/**
* Set the checked state of the UCheckBox without triggering exposed event bindings.
* @param NewState The new value.
*/
void SetCheckedState_NoBroadcast(const ECheckBoxState NewState);