Hi Adam,
The code added to the drop down is dynamically generated (in final product), the test case added using the following:
Dim oList As CuteEditor.RichDropDownList = oEditor.ToolControls("Layouts").Control
Dim oItem As New CuteEditor.RichListItem()
oItem.Text = "Test Item"
oItem.Value = "Code Snipet"
oList.Items.Add(oItem)
The control "Layouts" is added in the configuration file via:
<
item type="dropdown" width="170" ForeColor="Black" name="Layouts" text="Insert Layout" RenderItemBorder="true" />
Many Thanks,
Ady