[]
Adds a split button to the toolstrip.
protected C1EditorToolStripSplitButton AddSplitButton(CommandSplitButton command)
Type | Name | Description |
---|---|---|
CommandSplitButton | command | The command assigned to the split button. |
Type | Description |
---|---|
C1EditorToolStripSplitButton | The new split button. |
The AddSplitButton method allows inheritors to add a split button of the
The following code example demonstrates how to create a custom toolstrip that has Border split button.
public class MyToolStrip : C1EditorToolStripBase
{
protected override void OnInitialize()
{
AddSplitButton(CommandSplitButton.Border);
}
}