Represents a toolstrip button which performs a command in a linked C1XmlEditor control.

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

Syntax

C#
[ToolboxItemAttribute(false)]
public class C1XmlEditorToolStripButton : ToolStripButton
Visual Basic (Declaration)
<ToolboxItemAttribute(False)> _
Public Class C1XmlEditorToolStripButton _
	Inherits ToolStripButton

Remarks

Use this class to add a C1XmlEditor-related button to a ToolStrip.

Examples

The following code example demonstrates how to create a C1XmlEditorToolStripButton and add it to a ToolStrip.
Copy CodeC#
C1XmlEditorToolStripButton button = new C1XmlEditorToolStripButton();
button.Command = CommandButton.ClearFormatting;
button.Editor = c1XmlEditor1;
toolStrip1.Items.Add(button);

Inheritance Hierarchy

System..::.Object
  System..::.MarshalByRefObject
    System.ComponentModel..::.Component
      System.Windows.Forms..::.ToolStripItem
        System.Windows.Forms..::.ToolStripButton
          C1.Win.XmlEditor.ToolStrips..::.C1XmlEditorToolStripButton

See Also