Editor for WinForms | ComponentOne
C1.Win.C1Editor.4.5.2 Assembly / C1.Win.C1Editor.ToolStrips Namespace / C1EditorToolStripSplitButton Class
Members Example

In This Topic
    C1EditorToolStripSplitButton Class
    In This Topic
    Represents a toolstrip split button which performs a command in a linked C1.Win.C1Editor.C1Editor control.
    Object Model
    C1EditorToolStripSplitButton Class
    Syntax
    'Declaration
     
    Public Class C1EditorToolStripSplitButton 
       Inherits System.Windows.Forms.ToolStripSplitButton
    public class C1EditorToolStripSplitButton : System.Windows.Forms.ToolStripSplitButton 
    Remarks
    Use this class to add a C1.Win.C1Editor.C1Editor-related split button to a ToolStrip.
    Example
    The following code example demonstrates how to create a C1EditorToolStripSplitButton and add it to a System.Windows.Forms.ToolStrip.
    C1EditorToolStripSplitButton button = new C1EditorToolStripSplitButton();
    button.Command = CommandSplitButton.Border;
    button.Editor = c1Editor1;
    toolStrip1.Items.Add(button);
    Inheritance Hierarchy

    System.Object
       System.MarshalByRefObject
          System.ComponentModel.Component
             System.Windows.Forms.ToolStripItem
                System.Windows.Forms.ToolStripDropDownItem
                   System.Windows.Forms.ToolStripSplitButton
                      C1.Win.C1Editor.ToolStrips.C1EditorToolStripSplitButton

    See Also