Specifies the command used in a C1XmlEditorToolStripComboBox.

Namespace:  C1.Win.XmlEditor.ToolStrips
Assembly:  C1.Win.XmlEditor.2 (in C1.Win.XmlEditor.2.dll)

Syntax

C#
public enum CommandComboBox
Visual Basic (Declaration)
Public Enumeration CommandComboBox

Members

Member nameDescription
None
Empty command.
Style
Style combo box.

Remarks

The CommandComboBox enumeration is used by the C1XmlEditorToolStripComboBox to set items associated with the command.

Examples

The following code example demonstrates how to create a C1XmlEditorToolStripComboBox and add it to a ToolStrip.
Copy CodeC#
C1XmlEditorToolStripComboBox comboBox = new C1XmlEditorToolStripComboBox();
comboBox.Command = CommandComboBox.Style;
comboBox.Editor = c1XmlEditor1;
toolStrip1.Items.Add(comboBox);

See Also