I am using a UltraComboBox from Infragistics in a forms Task Manager screen

The UltraComboBox has its dropdown button hidden, and AutoCompletion is active so the user can type a couple of letters to retrieve an user name to assign someone to a task.
However, the user has the possibility to let the task "Not assigned" by clicking the eraser icon, setting the internal value of the ComboBox to null :
private void SetNotAssigned_Click(object sender, EventArgs e)
{
AssignedToComboBox.Value = null;
}
Instead of having my ComboBox filled with its NullText property ("Not assigned"), it is blank. Why ?