Skip to main content

ComboBox String

Base:
UComboBoxString
Type:
UNComboBoxString
Header File:
NexusUI/Public/Components/NComboBoxString.h

UNComboBoxString

An extension on the UMG UComboBoxString which adds functionality to set its selected option or index without broadcasting / triggering events.

UFunctions​

Set Selected Option (No Broadcast)​

/**
* Sets the selected option of the UComboBoxString without triggering exposed event bindings.
* @param Option The new option's text.
*/
void SetSelectedOption_NoBroadcast(FString Option);

Set Selected Index (No Broadcast)​

/**
* Sets the selected option by index of the UComboBoxString without triggering exposed event bindings.
* @param Index The new option's index.
*/
void SetSelectedIndex_NoBroadcast(const int32 Index);