|
1 | | -<Type Name="MenuItemArray" FullName="Microsoft.VisualBasic.Compatibility.VB6.MenuItemArray"> |
| 1 | +<Type Name="MenuItemArray" FullName="Microsoft.VisualBasic.Compatibility.VB6.MenuItemArray"> |
2 | 2 | <TypeSignature Language="C#" Value="public class MenuItemArray : Microsoft.VisualBasic.Compatibility.VB6.BaseControlArray, System.ComponentModel.IExtenderProvider" /> |
3 | 3 | <TypeSignature Language="ILAsm" Value=".class public auto ansi MenuItemArray extends Microsoft.VisualBasic.Compatibility.VB6.BaseControlArray implements class System.ComponentModel.IExtenderProvider" /> |
4 | 4 | <TypeSignature Language="DocId" Value="T:Microsoft.VisualBasic.Compatibility.VB6.MenuItemArray" /> |
|
196 | 196 | |
197 | 197 | A double-click is determined by the mouse settings of the user's operating system. The user can set the time between clicks of a mouse button that should be considered a double-click instead of two clicks. The `Click` event is raised every time that a control is double-clicked. For example, if you have event handlers for the `Click` and <xref:System.Windows.Forms.Control.DoubleClick> events of a [control](ms-help://MS.VSCC.v90/MS.MSDNQTR.v90.en/fxref_system.windows.forms/html/6569d671-0a28-7b3f-dbb8-90c3d272b6e2.htm), the `Click` and <xref:System.Windows.Forms.Control.DoubleClick> events are raised when the control is double-clicked and both methods are called. If a control is double-clicked and that control does not support the <xref:System.Windows.Forms.Control.DoubleClick> event, the `Click` event might be raised two times. |
198 | 198 | |
199 | | - For more information about how to handle events, see [NIB: Consuming Events](http://msdn.microsoft.com/library/01e4f1bc-e55e-413f-98c7-6588493e5f67). |
| 199 | + For more information about how to handle events, see [Handling and Raising Events](~/docs/standard/events/index.md). |
200 | 200 | |
201 | 201 | > [!NOTE] |
202 | 202 | > Functions and objects in the <xref:Microsoft.VisualBasic.Compatibility.VB6> namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)]. They are necessary only when the Visual Basic 6.0 code model differs significantly from the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)] implementation. |
|
230 | 230 | ## Remarks |
231 | 231 | This event is used by an owner-drawn <xref:System.Windows.Forms.MenuItem>. |
232 | 232 | |
233 | | - For more information about how to handle events, see [NIB: Consuming Events](http://msdn.microsoft.com/library/01e4f1bc-e55e-413f-98c7-6588493e5f67). |
| 233 | + For more information about how to handle events, see [Handling and Raising Events](~/docs/standard/events/index.md). |
234 | 234 | |
235 | 235 | > [!NOTE] |
236 | 236 | > Functions and objects in the <xref:Microsoft.VisualBasic.Compatibility.VB6> namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)]. They are necessary only when the Visual Basic 6.0 code model differs significantly from the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)] implementation. |
@@ -413,7 +413,7 @@ MsgBox(CStr(MenuItemArray(1).Text)) |
413 | 413 | ## Remarks |
414 | 414 | You can create an event handler for this event to specify the size an item is made before it is drawn in the <xref:Microsoft.VisualBasic.Compatibility.VB6.MenuItemArray.DrawItem> event. |
415 | 415 | |
416 | | - For more information about how to handle events, see [NIB: Consuming Events](http://msdn.microsoft.com/library/01e4f1bc-e55e-413f-98c7-6588493e5f67). |
| 416 | + For more information about how to handle events, see [Handling and Raising Events](~/docs/standard/events/index.md). |
417 | 417 | |
418 | 418 | > [!NOTE] |
419 | 419 | > Functions and objects in the <xref:Microsoft.VisualBasic.Compatibility.VB6> namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)]. They are necessary only when the Visual Basic 6.0 code model differs significantly from the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)] implementation. |
@@ -447,7 +447,7 @@ MsgBox(CStr(MenuItemArray(1).Text)) |
447 | 447 | ## Remarks |
448 | 448 | This event occurs only when a menu item has submenu items to display. You can use this event handler to add, remove, enable, disable, check, or uncheck menu items based on the state of your application before they are displayed. |
449 | 449 | |
450 | | - For more information about how to handle events, see [NIB: Consuming Events](http://msdn.microsoft.com/library/01e4f1bc-e55e-413f-98c7-6588493e5f67). |
| 450 | + For more information about how to handle events, see [Handling and Raising Events](~/docs/standard/events/index.md). |
451 | 451 | |
452 | 452 | > [!NOTE] |
453 | 453 | > Functions and objects in the <xref:Microsoft.VisualBasic.Compatibility.VB6> namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)]. They are necessary only when the Visual Basic 6.0 code model differs significantly from the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)] implementation. |
@@ -525,7 +525,7 @@ MsgBox(CStr(MenuItemArray(1).Text)) |
525 | 525 | ## Remarks |
526 | 526 | This event is typically raised when the user rests the mouse pointer over the menu item. The event can also be raised when the user highlights a menu item by using the keyboard to scroll to the menu item with the arrow keys. You can use this event to display a detailed Help string pertaining to this menu item in an application's status bar. |
527 | 527 | |
528 | | - For more information about how to handle events, see [NIB: Consuming Events](http://msdn.microsoft.com/library/01e4f1bc-e55e-413f-98c7-6588493e5f67). |
| 528 | + For more information about how to handle events, see [Handling and Raising Events](~/docs/standard/events/index.md). |
529 | 529 | |
530 | 530 | > [!NOTE] |
531 | 531 | > Functions and objects in the <xref:Microsoft.VisualBasic.Compatibility.VB6> namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)]. They are necessary only when the Visual Basic 6.0 code model differs significantly from the [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)] implementation. |
|
0 commit comments