MergeAction Enum

Definition

Specifies the kind of action to take if a match is found when combining menu items on a ToolStrip.

public enum class MergeAction
public enum MergeAction
type MergeAction = 
Public Enum MergeAction
Inheritance
MergeAction

Fields

Append 0

Appends the item to the end of the collection, ignoring match results.

Insert 1

Inserts the item to the target's collection immediately preceding the matched item. A match of the end of the list results in the item being appended to the list. If there is no match or the match is at the beginning of the list, the item is inserted at the beginning of the collection.

MatchOnly 4

A match is required, but no action is taken. Use this for tree creation and successful access to nested layouts.

Remove 3

Removes the matched item.

Replace 2

Replaces the matched item with the source item. The original item's drop-down items do not become children of the incoming item.

Applies to