MergeAction Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Fields
Name | Value | Description |
---|---|---|
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. |
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. |
Remove | 3 | Removes the matched item. |
MatchOnly | 4 | A match is required, but no action is taken. Use this for tree creation and successful access to nested layouts. |