Hi!!
I was messing with the intellisense functionality, and I love it.
But one issue I am running into, is my BoldedItems that I have added are not displaying their descriptions, but they are appearing as bold when needed.
The prompt is being displayed, the desired text is bold, but the description is not displaying.
private void editControl1_ContextPromptOpen(object sender, Syncfusion.Windows.Forms.Edit.ContextPromptUpdateEventArgs e)
{
ContextPromptItem item = e.AddPrompt("mbox(string msg)", "Displays the specfied message in a dialog window");
item.BoldedItems.Add(5, 10, "Message to display in dialog");
}