[]
Gets or sets the C1Editor control.
[Browsable(true)]
public C1Editor Editor { get; set; }
Set this property to a value to link a descendant of C1EditorToolStripBase type with the C1Editor control.
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);
}