ToolStripItem.MergeIndex Propiedad
Definición
public:
property int MergeIndex { int get(); void set(int value); };
public int MergeIndex { get; set; }
member this.MergeIndex : int with get, set
Public Property MergeIndex As Integer
Valor de propiedad
Entero que representa el índice del elemento combinado, si se encuentra una coincidencia, o -1 si no se encuentra ninguna coincidencia.An integer representing the index of the merged item, if a match is found, or -1 if a match is not found.
Ejemplos
En el ejemplo siguiente se MergeIndex usa la propiedad para insertar un combinado en una ubicación específica. ToolStripMenuItemThe following example uses the MergeIndex property to insert a merged ToolStripMenuItem in a specific location. Este ejemplo forma parte de un ejemplo más grande disponible en ToolStripManager la información general de la clase.This example is part of a larger example available in the ToolStripManager class overview.
public void ShowInsertInSameLocationSample()
{
// Notice how the items are in backward order.
// This is because "merge-one" gets applied, then a search occurs for the new second position
// for "merge-two", and so on.
foreach (ToolStripItem item in cmsItemsToMerge.Items)
{
item.MergeAction = MergeAction.Insert;
item.MergeIndex = 2;
}
}
Public Sub ShowInsertInSameLocationSample()
' Notice how the items are in backward order.
' This is because "merge-one" gets applied, then a search occurs for the new second position
' for "merge-two", and so on.
Dim item As ToolStripItem
For Each item In cmsItemsToMerge.Items
item.MergeAction = MergeAction.Insert
item.MergeIndex = 2
Next item
End Sub
Comentarios
Utilice la MergeIndex propiedad para obtener o establecer el índice de un ToolStripMenuItem objeto de modo que pueda tener acceso a él para operaciones de combinación de menús.Use the MergeIndex property to get or set the index of a ToolStripMenuItem so that you can access it for menu-merging operations.