[]
        
(Showing Draft Content)

C1.Win.C1Editor.ToolStrips.C1EditorToolStripBase.Editor

Editor Property

Editor

Gets or sets the C1Editor control.

Declaration
[Browsable(true)]
public C1Editor Editor { get; set; }
Remarks

Set this property to a value to link a descendant of C1EditorToolStripBase type with the C1Editor control.

Examples

The following code example demonstrates how to use Editor property to link a C1EditorToolStripStyle to a C1Editor.

private void Form1_Load(object sender, EventArgs e)
{
     C1EditorToolStripStyle toolStrip = new C1EditorToolStripStyle();
     toolStrip.Editor = c1Editor1;
     this.Controls.Add(toolStrip);
}