diff --git a/snippets/csharp/System/ThreadStaticAttribute/Overview/threadsafe2a.cs b/snippets/csharp/System/ThreadStaticAttribute/Overview/threadsafe2a.cs
index fcc8fd8c3d2..5f7e07d328a 100644
--- a/snippets/csharp/System/ThreadStaticAttribute/Overview/threadsafe2a.cs
+++ b/snippets/csharp/System/ThreadStaticAttribute/Overview/threadsafe2a.cs
@@ -23,10 +23,10 @@ static void Main()
static void ProcessRequest(object? requestId)
{
- // Assign the request ID to the thread-static field
+ // Assign the request ID to the thread-static field.
_requestId = requestId as string;
- // Simulate request processing across multiple method calls
+ // Simulate request processing across multiple method calls.
PerformDatabaseOperation();
PerformLogging();
}
diff --git a/xml/Microsoft.JScript/Typeof.xml b/xml/Microsoft.JScript/Typeof.xml
index 63e0db2a9d4..29785f2e75f 100644
--- a/xml/Microsoft.JScript/Typeof.xml
+++ b/xml/Microsoft.JScript/Typeof.xml
@@ -52,27 +52,27 @@
Determines the data type of the specified object.
The type of .
-
diff --git a/xml/Microsoft.SqlServer.Server/SqlUserDefinedTypeAttribute.xml b/xml/Microsoft.SqlServer.Server/SqlUserDefinedTypeAttribute.xml
index a8c94d17b94..b435c19ad0c 100644
--- a/xml/Microsoft.SqlServer.Server/SqlUserDefinedTypeAttribute.xml
+++ b/xml/Microsoft.SqlServer.Server/SqlUserDefinedTypeAttribute.xml
@@ -38,19 +38,19 @@
Used to mark a type definition in an assembly as a user-defined type (UDT) in SQL Server. The properties on the attribute reflect the physical characteristics used when the type is registered with SQL Server. This class cannot be inherited.
- custom attribute. Every UDT must be annotated with this attribute. See [CLR User-Defined Types](https://go.microsoft.com/fwlink/?LinkId=128028) for more information about UDTs, including an example of a UDT.
-
-
-
-## Examples
- The following example shows the `UserDefinedType` attribute of the Point UDT. The UDT is byte-ordered, is named "Point", has a validation method named "ValidatePoint", and uses the native serialization format.
-
+ custom attribute. Every UDT must be annotated with this attribute. See [CLR User-Defined Types](https://go.microsoft.com/fwlink/?LinkId=128028) for more information about UDTs, including an example of a UDT.
+
+
+
+## Examples
+ The following example shows the `UserDefinedType` attribute of the Point UDT. The UDT is byte-ordered, is named "Point", has a validation method named "ValidatePoint", and uses the native serialization format.
+
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlUserDefinedTypeAttribute Example/CS/source.cs" id="Snippet1":::
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_ADO.NET/DataWorks SqlUserDefinedTypeAttribute Example/VB/source.vb" id="Snippet1":::
-
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_ADO.NET/DataWorks SqlUserDefinedTypeAttribute Example/VB/source.vb" id="Snippet1":::
+
]]>
@@ -79,17 +79,17 @@
One of the values representing the serialization format of the type.
A required attribute on a user-defined type (UDT), used to confirm that the given type is a UDT and to indicate the storage format of the UDT.
-
@@ -145,37 +145,37 @@
if the user-defined type is byte ordered; otherwise .
- property in effect guarantees that the serialized binary data can be used for semantic ordering of the information. Thus, each instance of a byte-ordered UDT object can only have one serialized representation. When a comparison operation is performed in SQL Server on the serialized bytes, its results should be the same as if the same comparison operation had taken place in managed code.
-
- The following features are supported when is set to `true`:
-
-- The ability to create indexes on columns of this type.
-
-- The ability to create primary and foreign keys as well as CHECK and UNIQUE constraints on columns of this type.
-
-- The ability to use Transact-SQL ORDER BY, GROUP BY, and PARTITION BY clauses. In these cases, the binary representation of the type is used to determine the order.
-
-- The ability to use comparison operators in Transact-SQL statements.
-
-- The ability to persist computed columns of this type.
-
- Note that both the `Native` and `UserDefined` serialization formats support the following comparison operators when is set to `true`:
-
-- Equal to (=)
-
-- Not equal to (!=)
-
-- Greater than (>)
-
-- Less than (\<)
-
-- Greater than or equal to (>=)
-
-- Less than or equal to (<=)
-
+ property in effect guarantees that the serialized binary data can be used for semantic ordering of the information. Thus, each instance of a byte-ordered UDT object can only have one serialized representation. When a comparison operation is performed in SQL Server on the serialized bytes, its results should be the same as if the same comparison operation had taken place in managed code.
+
+ The following features are supported when is set to `true`:
+
+- The ability to create indexes on columns of this type.
+
+- The ability to create primary and foreign keys as well as CHECK and UNIQUE constraints on columns of this type.
+
+- The ability to use Transact-SQL ORDER BY, GROUP BY, and PARTITION BY clauses. In these cases, the binary representation of the type is used to determine the order.
+
+- The ability to use comparison operators in Transact-SQL statements.
+
+- The ability to persist computed columns of this type.
+
+ Note that both the `Native` and `UserDefined` serialization formats support the following comparison operators when is set to `true`:
+
+- Equal to (=)
+
+- Not equal to (!=)
+
+- Greater than (>)
+
+- Less than (\<)
+
+- Greater than or equal to (>=)
+
+- Less than or equal to (<=)
+
]]>
@@ -205,11 +205,11 @@
if all instances of this type are the same length; otherwise .
- . This attribute is only relevant for UDTs with `UserDefined` serialization .
-
+ . This attribute is only relevant for UDTs with `UserDefined` serialization .
+
]]>
@@ -238,19 +238,19 @@
The maximum size of the instance, in bytes.
An value representing the maximum size of the instance.
- property with the `UserDefined` serialization .
-
- When connecting to SQL Server 2005 or earlier, must be between 1 and 8000.
-
- When connecting to SQL Server 2008 or later, set between 1 and 8000, for a type whose instances are always 8,000 bytes or less. For types that can have instances larger than 8000, specify -1.
-
- For a UDT with user-defined serialization specified, refers to the total size of the UDT in its serialized form as defined by the user. Consider a UDT with a property of a string of 10 characters (). When the UDT is serialized using a , the total size of the serialized string is 22 bytes: 2 bytes per Unicode UTF-16 character, multiplied by the maximum number of characters, plus 2 control bytes of overhead incurred from serializing a binary stream. So, when determining the value of , the total size of the serialized UDT must be considered: the size of the data serialized in binary form plus the overhead incurred by serialization.
-
- This property should not be used with `Native` serialization .
-
+ property with the `UserDefined` serialization .
+
+ When connecting to SQL Server 2005 or earlier, must be between 1 and 8000.
+
+ When connecting to SQL Server 2008 or later, set between 1 and 8000, for a type whose instances are always 8,000 bytes or less. For types that can have instances larger than 8000, specify -1.
+
+ For a UDT with user-defined serialization specified, refers to the total size of the UDT in its serialized form as defined by the user. Consider a UDT with a property of a string of 10 characters (). When the UDT is serialized using a , the total size of the serialized string is 22 bytes: 2 bytes per Unicode UTF-16 character, multiplied by the maximum number of characters, plus 2 control bytes of overhead incurred from serializing a binary stream. So, when determining the value of , the total size of the serialized UDT must be considered: the size of the data serialized in binary form plus the overhead incurred by serialization.
+
+ This property should not be used with `Native` serialization .
+
]]>
@@ -279,11 +279,11 @@
The SQL Server name of the user-defined type.
A value representing the SQL Server name of the user-defined type.
- property is not used within SQL Server, but is used by the Microsoft Visual Studio .NET Integrated Development Environment (IDE).
-
+ property is not used within SQL Server, but is used by the Microsoft Visual Studio .NET Integrated Development Environment (IDE).
+
]]>
@@ -312,11 +312,11 @@
The name of the method used to validate instances of the user-defined type.
A representing the name of the method used to validate instances of the user-defined type.
-
diff --git a/xml/Microsoft.VisualBasic.ApplicationServices/BuiltInRoleConverter.xml b/xml/Microsoft.VisualBasic.ApplicationServices/BuiltInRoleConverter.xml
index 6bca28c491a..79624995a22 100644
--- a/xml/Microsoft.VisualBasic.ApplicationServices/BuiltInRoleConverter.xml
+++ b/xml/Microsoft.VisualBasic.ApplicationServices/BuiltInRoleConverter.xml
@@ -17,16 +17,16 @@
Provides a type converter to convert enumeration values to enumeration values.
- object.
-
- For more information about type converters, see the base class and [How to: Implement a Type Converter](https://learn.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ayybcxe5(v=vs.120)).
-
+ object.
+
+ For more information about type converters, see the base class and [How to: Implement a Type Converter](https://learn.microsoft.com/previous-versions/visualstudio/visual-studio-2013/ayybcxe5(v=vs.120)).
+
> [!CAUTION]
-> You should never create an instance of a class. Instead, call the method of the class. For more information, see the examples in the base class.
-
+> You should never create an instance of a class. Instead, call the method of the class. For more information, see the examples in the base class.
+
]]>
@@ -56,11 +56,11 @@
Initializes a new instance of the class.
- object.
-
+ object.
+
]]>
@@ -95,13 +95,13 @@
Gets a value indicating whether this converter can convert an object to the given destination type using the context.
A object that indicates whether this converter can perform the conversion.
- object.
-
+ object.
+
]]>
@@ -140,15 +140,15 @@
Converts the given object to another type.
The converted object.
- on the object if the object is valid and if the destination type is .
-
- The `context` parameter can be used to extract additional information about the environment this converter is being invoked from. This can be `Nothing`, so always check. Also, properties on the context object can return `Nothing`.
-
- This type converter supports the Visual Basic object.
-
+ on the object if the object is valid and if the destination type is .
+
+ The `context` parameter can be used to extract additional information about the environment this converter is being invoked from. This can be `Nothing`, so always check. Also, properties on the context object can return `Nothing`.
+
+ This type converter supports the Visual Basic object.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.ApplicationServices/ConsoleApplicationBase.xml b/xml/Microsoft.VisualBasic.ApplicationServices/ConsoleApplicationBase.xml
index d2652f90443..1eea260abfd 100644
--- a/xml/Microsoft.VisualBasic.ApplicationServices/ConsoleApplicationBase.xml
+++ b/xml/Microsoft.VisualBasic.ApplicationServices/ConsoleApplicationBase.xml
@@ -30,26 +30,26 @@
Provides properties, methods, and events related to the current application.
- provides members that are available in all projects.
-
-- provides members available in Windows Forms applications.
-
-- provides members available in console applications.
-
-
-
-## Examples
- This example uses the `My.Application.CommandLineArgs` property to examine the application's command-line arguments. If an argument is found that starts with `/input=`, the rest of that argument is displayed.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyApplication/VB/Form1.vb" id="Snippet3":::
-
+ provides members that are available in all projects.
+
+- provides members available in Windows Forms applications.
+
+- provides members available in console applications.
+
+
+
+## Examples
+ This example uses the `My.Application.CommandLineArgs` property to examine the application's command-line arguments. If an argument is found that starts with `/input=`, the rest of that argument is displayed.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyApplication/VB/Form1.vb" id="Snippet3":::
+
]]>
@@ -128,44 +128,44 @@
Gets a collection containing the command-line arguments as strings for the current application.
A of , containing the command-line arguments as strings for the current application.
- event and examine the property of the argument.
-
+ event and examine the property of the argument.
+
> [!NOTE]
-> The `My.Application.CommandLineArgs` property returns only the command-line arguments. This is different from the behavior of the property, which returns the application name in addition to the arguments.
-
+> The `My.Application.CommandLineArgs` property returns only the command-line arguments. This is different from the behavior of the property, which returns the application name in addition to the arguments.
+
> [!NOTE]
-> In an application that is ClickOnce deployed, use the property of the `My.Application.Deployment` object to get the command-line arguments. For more information, see .
-
- The following table lists examples of tasks involving the `My.Application.CommandLineArgs` property.
-
-|To|See|
-|-|-|
-|Check the command-line arguments of subsequent attempts to start a single-instance application||
-
-## Availability by Project Type
-
-|Project type|Available|
-|-|-|
-|Windows Application|**Yes**|
-|Class Library|No|
-|Console Application|**Yes**|
-|Windows Control Library|No|
-|Web Control Library|No|
-|Windows Service|**Yes**|
-|Web Site|No|
-
-
-
-## Examples
- This example uses the `My.Application.CommandLineArgs` property to examine the application's command-line arguments. If an argument is found that starts with `/input=`, the rest of that argument is displayed.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyApplication/VB/Form1.vb" id="Snippet3":::
-
+> In an application that is ClickOnce deployed, use the property of the `My.Application.Deployment` object to get the command-line arguments. For more information, see .
+
+ The following table lists examples of tasks involving the `My.Application.CommandLineArgs` property.
+
+|To|See|
+|-|-|
+|Check the command-line arguments of subsequent attempts to start a single-instance application||
+
+## Availability by Project Type
+
+|Project type|Available|
+|-|-|
+|Windows Application|**Yes**|
+|Class Library|No|
+|Console Application|**Yes**|
+|Windows Control Library|No|
+|Web Control Library|No|
+|Windows Service|**Yes**|
+|Web Site|No|
+
+
+
+## Examples
+ This example uses the `My.Application.CommandLineArgs` property to examine the application's command-line arguments. If an argument is found that starts with `/input=`, the rest of that argument is displayed.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyApplication/VB/Form1.vb" id="Snippet3":::
+
]]>
@@ -196,36 +196,36 @@
Gets the current application's ClickOnce deployment object, which provides support for updating the current deployment programmatically and support for the on-demand download of files.
The object for the application's ClickOnce deployment.
- object. The object provides support for updating the current deployment programmatically as well as support for the on-demand download of files. For more information on ClickOnce applications and how to deploy them, see [ClickOnce Security and Deployment](/visualstudio/deployment/clickonce-security-and-deployment) and [Publishing ClickOnce Applications](/visualstudio/deployment/publishing-clickonce-applications).
-
- Confirm that the property is `True` before you access the `My.Application.Deployment` property. Otherwise, if the application is not deployed using ClickOnce, reading the `My.Application.Deployment` property results in an exception. For more information on deploying a ClickOnce application, see [How to: Publish a ClickOnce Application using the Publish Wizard](/visualstudio/deployment/how-to-publish-a-clickonce-application-using-the-publish-wizard).
-
- For more information on using the `My.Application.Deployment` property, see [Overview of the Visual Basic Application Model](/dotnet/visual-basic/developing-apps/development-with-my/overview-of-the-visual-basic-application-model).
-
-## Availability by Project Type
-
-|Project type|Available|
-|-|-|
-|Windows Forms Application|**Yes**|
-|Class Library|No|
-|Console Application|**Yes**|
-|Windows Forms Control Library|No|
-|Web Control Library|No|
-|Windows Service|**Yes**|
-|Web Site|No|
-
-
-
-## Examples
- This example downloads and installs the update after checking that the application is network-deployed. The method does not update the application unless it is out of date. The application has to restart to use the update.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyApplication/VB/Form1.vb" id="Snippet4":::
-
- Only applications that are ClickOnce deployed can be updated using the `My.Application.Deployment` object. For more information on deploying a ClickOnce application, see [How to: Publish a ClickOnce Application using the Publish Wizard](/visualstudio/deployment/how-to-publish-a-clickonce-application-using-the-publish-wizard).
-
+ object. The object provides support for updating the current deployment programmatically as well as support for the on-demand download of files. For more information on ClickOnce applications and how to deploy them, see [ClickOnce Security and Deployment](/visualstudio/deployment/clickonce-security-and-deployment) and [Publishing ClickOnce Applications](/visualstudio/deployment/publishing-clickonce-applications).
+
+ Confirm that the property is `True` before you access the `My.Application.Deployment` property. Otherwise, if the application is not deployed using ClickOnce, reading the `My.Application.Deployment` property results in an exception. For more information on deploying a ClickOnce application, see [How to: Publish a ClickOnce Application using the Publish Wizard](/visualstudio/deployment/how-to-publish-a-clickonce-application-using-the-publish-wizard).
+
+ For more information on using the `My.Application.Deployment` property, see [Overview of the Visual Basic Application Model](/dotnet/visual-basic/developing-apps/development-with-my/overview-of-the-visual-basic-application-model).
+
+## Availability by Project Type
+
+|Project type|Available|
+|-|-|
+|Windows Forms Application|**Yes**|
+|Class Library|No|
+|Console Application|**Yes**|
+|Windows Forms Control Library|No|
+|Web Control Library|No|
+|Windows Service|**Yes**|
+|Web Site|No|
+
+
+
+## Examples
+ This example downloads and installs the update after checking that the application is network-deployed. The method does not update the application unless it is out of date. The application has to restart to use the update.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyApplication/VB/Form1.vb" id="Snippet4":::
+
+ Only applications that are ClickOnce deployed can be updated using the `My.Application.Deployment` object. For more information on deploying a ClickOnce application, see [How to: Publish a ClickOnce Application using the Publish Wizard](/visualstudio/deployment/how-to-publish-a-clickonce-application-using-the-publish-wizard).
+
]]>
The application is not deployed as a ClickOnce application.
@@ -279,11 +279,11 @@
Sets the values to use as the current application's command-line arguments.
A of , containing the strings to use as the command-line arguments for the current application.
- class. This property determines what the property returns. If you do not set this property, or you set this property to `Nothing`, the property obtains the command-line arguments from the property.
-
+ class. This property determines what the property returns. If you do not set this property, or you set this property to `Nothing`, the property obtains the command-line arguments from the property.
+
]]>
Objects (Visual Basic)
@@ -309,38 +309,38 @@
Gets a that represents whether the application was deployed from a network using ClickOnce.
A that represents whether the application was deployed from a network. The value is if the current application was deployed from a network; otherwise the value is .
- property. Otherwise, if the application is not deployed from a network using ClickOnce, reading the `My.Application.Deployment` property results in an exception.
-
- For more information on configuring ClickOnce, see [Publishing ClickOnce Applications](/visualstudio/deployment/publishing-clickonce-applications). For more information on deploying a ClickOnce application, see [How to: Publish a ClickOnce Application using the Publish Wizard](/visualstudio/deployment/how-to-publish-a-clickonce-application-using-the-publish-wizard).
-
- For more information on using the `My.Application.IsNetworkDeployed` property, see [Overview of the Visual Basic Application Model](/dotnet/visual-basic/developing-apps/development-with-my/overview-of-the-visual-basic-application-model).
-
-## Availability by Project Type
-
-|Project type|Available|
-|-|-|
-|Windows Forms Application|**Yes**|
-|Class Library|No|
-|Console Application|**Yes**|
-|Windows Forms Control Library|No|
-|Web Control Library|No|
-|Windows Service|**Yes**|
-|Web Site|No|
-
-
-
-## Examples
- This example downloads and installs the update after checking that the application is deployed from a network. The method does not update the application unless it is out of date. The application has to restart to use the update.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyApplication/VB/Form1.vb" id="Snippet4":::
-
- Only applications that are ClickOnce-deployed can be updated using the `My.Application.Deployment` object. For more information on deploying a ClickOnce application, see [How to: Publish a ClickOnce Application using the Publish Wizard](/visualstudio/deployment/how-to-publish-a-clickonce-application-using-the-publish-wizard).
-
+ property. Otherwise, if the application is not deployed from a network using ClickOnce, reading the `My.Application.Deployment` property results in an exception.
+
+ For more information on configuring ClickOnce, see [Publishing ClickOnce Applications](/visualstudio/deployment/publishing-clickonce-applications). For more information on deploying a ClickOnce application, see [How to: Publish a ClickOnce Application using the Publish Wizard](/visualstudio/deployment/how-to-publish-a-clickonce-application-using-the-publish-wizard).
+
+ For more information on using the `My.Application.IsNetworkDeployed` property, see [Overview of the Visual Basic Application Model](/dotnet/visual-basic/developing-apps/development-with-my/overview-of-the-visual-basic-application-model).
+
+## Availability by Project Type
+
+|Project type|Available|
+|-|-|
+|Windows Forms Application|**Yes**|
+|Class Library|No|
+|Console Application|**Yes**|
+|Windows Forms Control Library|No|
+|Web Control Library|No|
+|Windows Service|**Yes**|
+|Web Site|No|
+
+
+
+## Examples
+ This example downloads and installs the update after checking that the application is deployed from a network. The method does not update the application unless it is out of date. The application has to restart to use the update.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyApplication/VB/Form1.vb" id="Snippet4":::
+
+ Only applications that are ClickOnce-deployed can be updated using the `My.Application.Deployment` object. For more information on deploying a ClickOnce application, see [How to: Publish a ClickOnce Application using the Publish Wizard](/visualstudio/deployment/how-to-publish-a-clickonce-application-using-the-publish-wizard).
+
]]>
Objects (Visual Basic)
diff --git a/xml/Microsoft.VisualBasic.ApplicationServices/NoStartupFormException.xml b/xml/Microsoft.VisualBasic.ApplicationServices/NoStartupFormException.xml
index 9a53523d651..14a138f2f0e 100644
--- a/xml/Microsoft.VisualBasic.ApplicationServices/NoStartupFormException.xml
+++ b/xml/Microsoft.VisualBasic.ApplicationServices/NoStartupFormException.xml
@@ -36,14 +36,14 @@
This exception is thrown by the Visual Basic Application Model when the property has not been set.
- property before running the method. If the property is not set, the Visual Basic Application Model raises this exception. For more information, see [Extending the Visual Basic Application Model](/dotnet/visual-basic/developing-apps/customizing-extending-my/extending-the-visual-basic-application-model).
-
+ property before running the method. If the property is not set, the Visual Basic Application Model raises this exception. For more information, see [Extending the Visual Basic Application Model](/dotnet/visual-basic/developing-apps/customizing-extending-my/extending-the-visual-basic-application-model).
+
> [!NOTE]
-> For information about how to set the startup form by using the **Project Designer**, see [Application Page, Project Designer (Visual Basic)](https://learn.microsoft.com/visualstudio/ide/reference/application-page-project-designer-visual-basic).
-
+> For information about how to set the startup form by using the **Project Designer**, see [Application Page, Project Designer (Visual Basic)](https://learn.microsoft.com/visualstudio/ide/reference/application-page-project-designer-visual-basic).
+
]]>
Overview of the Visual Basic Application Model
@@ -86,18 +86,18 @@
Initializes a new instance of the class.
- property before running the method. If the property is not set, the Visual Basic Application Model raises this exception. For more information, see [Extending the Visual Basic Application Model](/dotnet/visual-basic/developing-apps/customizing-extending-my/extending-the-visual-basic-application-model).
-
- The following table shows the initial property values for an instance of .
-
-|Property|Value|
-|-|-|
-||A null reference (`Nothing` in Visual Basic).|
-||The localized error-message string.|
-
+ property before running the method. If the property is not set, the Visual Basic Application Model raises this exception. For more information, see [Extending the Visual Basic Application Model](/dotnet/visual-basic/developing-apps/customizing-extending-my/extending-the-visual-basic-application-model).
+
+ The following table shows the initial property values for an instance of .
+
+|Property|Value|
+|-|-|
+||A null reference (`Nothing` in Visual Basic).|
+||The localized error-message string.|
+
]]>
Overview of the Visual Basic Application Model
@@ -139,18 +139,18 @@
A message that describes the error.
Initializes a new instance of the class with a specified error message.
- inherits from . This constructor sets the properties of the object as shown in the following table.
-
-|Property|Value|
-|-|-|
-||A null reference (`Nothing` in Visual Basic)|
-||The `message` string.|
-
+ inherits from . This constructor sets the properties of the object as shown in the following table.
+
+|Property|Value|
+|-|-|
+||A null reference (`Nothing` in Visual Basic)|
+||The `message` string.|
+
]]>
Overview of the Visual Basic Application Model
@@ -202,11 +202,11 @@
The object that contains contextual information about the source or destination.
Initializes a new instance of the class with serialized data.
-
Overview of the Visual Basic Application Model
@@ -250,20 +250,20 @@
The object that is the cause of the current exception. If the parameter is not a null reference ( in Visual Basic), the current exception is raised in a catch block that handles the inner exception.
Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
- property. The property returns the same value that is passed into the constructor, or a null reference if the property does not supply the inner exception value to the constructor.
-
- The following table shows the initial property values for an instance of .
-
-|Property|Value|
-|-|-|
-||The `inner` reference.|
-||The `message` string.|
-
+ property. The property returns the same value that is passed into the constructor, or a null reference if the property does not supply the inner exception value to the constructor.
+
+ The following table shows the initial property values for an instance of .
+
+|Property|Value|
+|-|-|
+||The `inner` reference.|
+||The `message` string.|
+
]]>
Overview of the Visual Basic Application Model
diff --git a/xml/Microsoft.VisualBasic.ApplicationServices/User.xml b/xml/Microsoft.VisualBasic.ApplicationServices/User.xml
index 51b07a64143..9637575ea30 100644
--- a/xml/Microsoft.VisualBasic.ApplicationServices/User.xml
+++ b/xml/Microsoft.VisualBasic.ApplicationServices/User.xml
@@ -30,23 +30,23 @@
Provides access to the information about the current user.
- for the current user. A principal object represents the user's security context, including that user's identity and any roles to which the user belongs.
-
- For Windows applications, this property provides the same functionality as the property. For Web applications, this property provides the same functionality as the property of the object returned by the property.
-
+ for the current user. A principal object represents the user's security context, including that user's identity and any roles to which the user belongs.
+
+ For Windows applications, this property provides the same functionality as the property. For Web applications, this property provides the same functionality as the property of the object returned by the property.
+
> [!NOTE]
-> For Windows applications, only projects built on the **Windows Application** template initialize the `My.User` object by default. In all other Windows project types, you must initialize the `My.User` object by calling the method explicitly or by assigning a value to .
-
-## Examples
- This example checks if the application is using Windows or custom authentication, and uses that information to parse the `My.User.Name` property.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet3":::
-
+> For Windows applications, only projects built on the **Windows Application** template initialize the `My.User` object by default. In all other Windows project types, you must initialize the `My.User` object by calling the method explicitly or by assigning a value to .
+
+## Examples
+ This example checks if the application is using Windows or custom authentication, and uses that information to parse the `My.User.Name` property.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet3":::
+
]]>
@@ -91,11 +91,11 @@
Initializes a new instance of the class.
-
Objects (Visual Basic)
@@ -149,34 +149,34 @@
Gets or sets the current principal (for role-based security).
A value representing the security context.
- interface to enable custom authentication.
-
- In most project types, this property gets and sets the thread's current principal. In an ASP.NET application, this property gets and sets the security information for the current HTTP request's user identity.
-
- This is an advanced member; it does not show in IntelliSense unless you click the **All** tab.
-
-## Availability by Project Type
-
-|Project type|Available|
-|-|-|
-|Windows Application|**Yes**|
-|Class Library|**Yes**|
-|Console Application|**Yes**|
-|Windows Control Library|**Yes**|
-|Web Control Library|**Yes**|
-|Windows Service|**Yes**|
-|Web Site|**Yes**|
-
-
-
-## Examples
- This example checks if the application is using Windows or custom authentication, and uses that information to parse `My.User.Name` property.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet3":::
-
+ interface to enable custom authentication.
+
+ In most project types, this property gets and sets the thread's current principal. In an ASP.NET application, this property gets and sets the security information for the current HTTP request's user identity.
+
+ This is an advanced member; it does not show in IntelliSense unless you click the **All** tab.
+
+## Availability by Project Type
+
+|Project type|Available|
+|-|-|
+|Windows Application|**Yes**|
+|Class Library|**Yes**|
+|Console Application|**Yes**|
+|Windows Control Library|**Yes**|
+|Web Control Library|**Yes**|
+|Windows Service|**Yes**|
+|Web Site|**Yes**|
+
+
+
+## Examples
+ This example checks if the application is using Windows or custom authentication, and uses that information to parse `My.User.Name` property.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet3":::
+
]]>
The caller does not have the permission required to set the principal.
@@ -210,30 +210,30 @@
Sets the thread's current principal to the Windows user that started the application.
- .
-
- In Windows projects, the `My.User` object is based on the thread's current principal; therefore, this method can change the information `My.User` returns. In an ASP.NET application, the `My.User` object is based on the current HTTP request's user identity, and is unaffected by this method.
-
+ .
+
+ In Windows projects, the `My.User` object is based on the thread's current principal; therefore, this method can change the information `My.User` returns. In an ASP.NET application, the `My.User` object is based on the current HTTP request's user identity, and is unaffected by this method.
+
> [!NOTE]
-> The exact behavior of the `My.User` object depends on the type of application and on the operating system on which the application runs. For more information, see the class overview.
-
- This is an advanced member; it does not show in IntelliSense unless you click the **All** tab.
-
-## Availability by Project Type
-
-|Project type|Available|
-|-|-|
-|Windows Application|**Yes**|
-|Class Library|**Yes**|
-|Console Application|**Yes**|
-|Windows Control Library|**Yes**|
-|Web Control Library|**Yes**|
-|Windows Service|**Yes**|
-|Web Site|**Yes**|
-
+> The exact behavior of the `My.User` object depends on the type of application and on the operating system on which the application runs. For more information, see the class overview.
+
+ This is an advanced member; it does not show in IntelliSense unless you click the **All** tab.
+
+## Availability by Project Type
+
+|Project type|Available|
+|-|-|
+|Windows Application|**Yes**|
+|Class Library|**Yes**|
+|Console Application|**Yes**|
+|Windows Control Library|**Yes**|
+|Web Control Library|**Yes**|
+|Windows Service|**Yes**|
+|Web Site|**Yes**|
+
]]>
Objects (Visual Basic)
@@ -272,11 +272,11 @@
Gets or sets the principal object representing the current user.
An object representing the current user.
- object, this property wraps the property. Override this method in a derived class to provide different behavior. For example, the property overrides this property.
-
+ object, this property wraps the property. Override this method in a derived class to provide different behavior. For example, the property overrides this property.
+
]]>
Objects (Visual Basic)
@@ -316,33 +316,33 @@
if the user was authenticated; otherwise, .
- [!NOTE]
-> The exact behavior of `My.User` object depends on the type of the application and on the operating system on which the application runs. For more information, see the class overview.
-
-## Availability by Project Type
-
-|Project type|Available|
-|-|-|
-|Windows Application|**Yes**|
-|Class Library|**Yes**|
-|Console Application|**Yes**|
-|Windows Control Library|**Yes**|
-|Web Control Library|**Yes**|
-|Windows Service|**Yes**|
-|Web Site|**Yes**|
-
-
-
-## Examples
- This example verifies that the user has been authenticated before accessing a resource.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet2":::
-
+> The exact behavior of `My.User` object depends on the type of the application and on the operating system on which the application runs. For more information, see the class overview.
+
+## Availability by Project Type
+
+|Project type|Available|
+|-|-|
+|Windows Application|**Yes**|
+|Class Library|**Yes**|
+|Console Application|**Yes**|
+|Windows Control Library|**Yes**|
+|Web Control Library|**Yes**|
+|Windows Service|**Yes**|
+|Web Site|**Yes**|
+
+
+
+## Examples
+ This example verifies that the user has been authenticated before accessing a resource.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet2":::
+
]]>
Objects (Visual Basic)
@@ -382,37 +382,37 @@
if the current user is a member of the specified role; otherwise, .
- method of the current principal.
-
- The overload of the `My.User.IsInRole` method that takes a `BuiltInRole` enumeration behaves differently, depending on the current principal. If it is a Windows user principal (), this function converts `role` to the equivalent enumeration and returns the result of calling . If the current principal is any other principal, this function passes the name of the enumeration value in `role` to the principal's method.
-
+ method of the current principal.
+
+ The overload of the `My.User.IsInRole` method that takes a `BuiltInRole` enumeration behaves differently, depending on the current principal. If it is a Windows user principal (), this function converts `role` to the equivalent enumeration and returns the result of calling . If the current principal is any other principal, this function passes the name of the enumeration value in `role` to the principal's method.
+
> [!NOTE]
-> The exact behavior of the `My.User` object depends on the type of the application and on the operating system on which the application runs. For more information, see the class overview.
-
-## Availability by Project Type
-
-|Project type|Available|
-|-|-|
-|Windows Application|**Yes**|
-|Class Library|**Yes**|
-|Console Application|**Yes**|
-|Windows Control Library|**Yes**|
-|Web Control Library|**Yes**|
-|Windows Service|**Yes**|
-|Web Site|**Yes**|
-
-
-
-## Examples
- This example checks if the user is an administrator before accessing a resource.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet1":::
-
+> The exact behavior of the `My.User` object depends on the type of the application and on the operating system on which the application runs. For more information, see the class overview.
+
+## Availability by Project Type
+
+|Project type|Available|
+|-|-|
+|Windows Application|**Yes**|
+|Class Library|**Yes**|
+|Console Application|**Yes**|
+|Windows Control Library|**Yes**|
+|Web Control Library|**Yes**|
+|Windows Service|**Yes**|
+|Web Site|**Yes**|
+
+
+
+## Examples
+ This example checks if the user is an administrator before accessing a resource.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet1":::
+
]]>
Objects (Visual Basic)
@@ -456,37 +456,37 @@
if the current user is a member of the specified role; otherwise, .
- method of the current principal.
-
- The overload of the `My.User.IsInRole` method that takes a `BuiltInRole` enumeration behaves differently, depending on the current principal. If it is a Windows user principal (), this function converts `role` to the equivalent enumeration and returns the result of calling . If the current principal is any other principal, this function passes the name of the enumeration value in `role` to the principal's method.
-
+ method of the current principal.
+
+ The overload of the `My.User.IsInRole` method that takes a `BuiltInRole` enumeration behaves differently, depending on the current principal. If it is a Windows user principal (), this function converts `role` to the equivalent enumeration and returns the result of calling . If the current principal is any other principal, this function passes the name of the enumeration value in `role` to the principal's method.
+
> [!NOTE]
-> The exact behavior of the `My.User` object depends on the type of the application and on the operating system on which the application runs. For more information, see the class overview.
-
-## Availability by Project Type
-
-|Project type|Available|
-|-|-|
-|Windows Application|**Yes**|
-|Class Library|**Yes**|
-|Console Application|**Yes**|
-|Windows Control Library|**Yes**|
-|Web Control Library|**Yes**|
-|Windows Service|**Yes**|
-|Web Site|**Yes**|
-
-
-
-## Examples
- This example checks if the user is an administrator before accessing a resource.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet1":::
-
+> The exact behavior of the `My.User` object depends on the type of the application and on the operating system on which the application runs. For more information, see the class overview.
+
+## Availability by Project Type
+
+|Project type|Available|
+|-|-|
+|Windows Application|**Yes**|
+|Class Library|**Yes**|
+|Console Application|**Yes**|
+|Windows Control Library|**Yes**|
+|Web Control Library|**Yes**|
+|Windows Service|**Yes**|
+|Web Site|**Yes**|
+
+
+
+## Examples
+ This example checks if the user is an administrator before accessing a resource.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet1":::
+
]]>
@@ -527,35 +527,35 @@
. The name of the current user.
- [!NOTE]
-> The exact behavior of the `My.User` object depends on the type of the application and on the operating system on which the application runs. For more information, see the class overview.
-
-## Availability by Project Type
-
-|Project type|Available|
-|-|-|
-|Windows Application|**Yes**|
-|Class Library|**Yes**|
-|Console Application|**Yes**|
-|Windows Control Library|**Yes**|
-|Web Control Library|**Yes**|
-|Windows Service|**Yes**|
-|Web Site|**Yes**|
-
-
-
-## Examples
- This example checks if the application is using Windows or custom authentication, and uses that information to parse the `My.User.Name` property.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet3":::
-
+> The exact behavior of the `My.User` object depends on the type of the application and on the operating system on which the application runs. For more information, see the class overview.
+
+## Availability by Project Type
+
+|Project type|Available|
+|-|-|
+|Windows Application|**Yes**|
+|Class Library|**Yes**|
+|Console Application|**Yes**|
+|Windows Control Library|**Yes**|
+|Web Control Library|**Yes**|
+|Windows Service|**Yes**|
+|Web Site|**Yes**|
+
+
+
+## Examples
+ This example checks if the application is using Windows or custom authentication, and uses that information to parse the `My.User.Name` property.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet3":::
+
]]>
Objects (Visual Basic)
diff --git a/xml/Microsoft.VisualBasic.ApplicationServices/WebUser.xml b/xml/Microsoft.VisualBasic.ApplicationServices/WebUser.xml
index 741587686e8..4e244fc35c3 100644
--- a/xml/Microsoft.VisualBasic.ApplicationServices/WebUser.xml
+++ b/xml/Microsoft.VisualBasic.ApplicationServices/WebUser.xml
@@ -17,23 +17,23 @@
Provides access to the information about the current user.
- for the current user. A principal object represents the user's security context, including that user's identity and any roles to which the user belongs.
-
- For Windows applications, this property provides the same functionality as the property. For Web applications, this property provides the same functionality as the property of the object returned by the property.
-
+ for the current user. A principal object represents the user's security context, including that user's identity and any roles to which the user belongs.
+
+ For Windows applications, this property provides the same functionality as the property. For Web applications, this property provides the same functionality as the property of the object returned by the property.
+
> [!NOTE]
-> For Windows applications, only projects built on the **Windows Application** template initialize the `My.User` object by default. In all other Windows project types, you must initialize the `My.User` object by calling the method explicitly or by assigning a value to .
-
-## Examples
- This example checks if the application is using Windows or custom authentication, and uses that information to parse the `My.User.Name` property.
-
- :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet3":::
-
+> For Windows applications, only projects built on the **Windows Application** template initialize the `My.User` object by default. In all other Windows project types, you must initialize the `My.User` object by calling the method explicitly or by assigning a value to .
+
+## Examples
+ This example checks if the application is using Windows or custom authentication, and uses that information to parse the `My.User.Name` property.
+
+ :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyUser/VB/Class1.vb" id="Snippet3":::
+
]]>
@@ -67,11 +67,11 @@
Initializes a new instance of the class.
-
@@ -98,13 +98,13 @@
Gets or sets the principal object representing the current user.
An object representing the current user.
- object, this property wraps the property of the property.
-
- For more detailed information, see the property.
-
+ object, this property wraps the property of the property.
+
+ For more detailed information, see the property.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.ApplicationServices/WindowsFormsApplicationBase.xml b/xml/Microsoft.VisualBasic.ApplicationServices/WindowsFormsApplicationBase.xml
index e267e56a448..1a765f90436 100644
--- a/xml/Microsoft.VisualBasic.ApplicationServices/WindowsFormsApplicationBase.xml
+++ b/xml/Microsoft.VisualBasic.ApplicationServices/WindowsFormsApplicationBase.xml
@@ -308,10 +308,10 @@
Typically, you use this method in a loop to process messages.
> [!NOTE]
-> The `My.Application.DoEvents` method does not process events in exactly the same way as the form does. Use multithreading to make the form directly handle the events. For more information, see [Using threads and threading](/dotnet/standard/threading/using-threads-and-threading).
+> The `My.Application.DoEvents` method does not process events in exactly the same way as the form does. Use multithreading to make the form directly handle the events. For more information, see [Using threads and threading](/dotnet/standard/threading/using-threads-and-threading).
> [!CAUTION]
-> If a method that handles a user interface (UI) event calls the `My.Application.DoEvents` method, the method might be re-entered before it finishes. This can happen because the `My.Application.DoEvents` method processes Windows messages, and Windows messages can raise events.
+> If a method that handles a user interface (UI) event calls the `My.Application.DoEvents` method, the method might be re-entered before it finishes. This can happen because the `My.Application.DoEvents` method processes Windows messages, and Windows messages can raise events.
The following table lists an example of a task involving the `My.Application.DoEvents` method.
@@ -722,7 +722,7 @@ To access the Code Editor window for application events:
For more information, see [Application Page, Project Designer (Visual Basic)](https://learn.microsoft.com/visualstudio/ide/reference/application-page-project-designer-visual-basic).
> [!NOTE]
-> Many network hubs will provide a network connection even if the hub is disconnected from a larger network. Consequently, for wired connections, this event indicates change in the connection between the computer and a hub.
+> Many network hubs will provide a network connection even if the hub is disconnected from a larger network. Consequently, for wired connections, this event indicates change in the connection between the computer and a hub.
## Availability by Project Type
@@ -1210,7 +1210,7 @@ For more information, see [Application Page, Project Designer (Visual Basic)](ht
The `My.Application.OpenForms` property gets a collection of all the application's open forms. The behavior is identical to the property.
> [!NOTE]
-> The `My.Application.OpenForms` property returns all open forms, regardless of which thread opened them. You should check the property of each form before accessing it; otherwise, it might throw an exception.
+> The `My.Application.OpenForms` property returns all open forms, regardless of which thread opened them. You should check the property of each form before accessing it; otherwise, it might throw an exception.
## Availability by Project Type
@@ -1373,9 +1373,9 @@ To change the setting in the Project Designer:
## Examples
This example has two parts.
-- The `InitializeSaveMySettingsOnExit` subroutine, which initializes the checked state of a control to the current value of the `SaveMySettingsOnExit` property.
+- The `InitializeSaveMySettingsOnExit` subroutine, which initializes the checked state of a control to the current value of the `SaveMySettingsOnExit` property.
-- The `SaveMySettingsOnExit_CheckedChanged` subroutine, which handles changes to a control to update the `My.Application.SaveMySettingsOnExit` property.
+- The `SaveMySettingsOnExit_CheckedChanged` subroutine, which handles changes to a control to update the `My.Application.SaveMySettingsOnExit` property.
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_VBCSharp/VbVbalrMyApplication/VB/Form1.vb" id="Snippet12":::
@@ -1752,7 +1752,7 @@ For more information, see [Application Page, Project Designer (Visual Basic)](ht
This event is raised on the application's main thread with the other user-interface events. This allows the event handler to access directly the application's user interface. However, if the application is busy handling another user-interface event when this event is raised, this event cannot be processed until the other event handler finishes or calls the method.
> [!NOTE]
-> The `StartupNextInstance` event is raised only in single-instance applications. To enable single-instance behavior for your application, you must check the **Make single instance application** check box in the Project Designer.
+> The `StartupNextInstance` event is raised only in single-instance applications. To enable single-instance behavior for your application, you must check the **Make single instance application** check box in the Project Designer.
To make an application single instance:
@@ -1850,7 +1850,7 @@ To access the Code Editor window for application events:
For more information, see [Application Page, Project Designer (Visual Basic)](https://learn.microsoft.com/visualstudio/ide/reference/application-page-project-designer-visual-basic).
> [!NOTE]
-> The Visual Basic compiler prevents applications that are built for debugging from raising this event, to enable a debugger to handle the unhandled exceptions. This means that if you are testing your application by running it under the Visual Studio Integrated Development Environment debugger, your `UnhandledException` event handler will not be called. For more information about building applications for debugging, see [/debug (Visual Basic)](/dotnet/visual-basic/reference/command-line-compiler/debug).
+> The Visual Basic compiler prevents applications that are built for debugging from raising this event, to enable a debugger to handle the unhandled exceptions. This means that if you are testing your application by running it under the Visual Studio Integrated Development Environment debugger, your `UnhandledException` event handler will not be called. For more information about building applications for debugging, see [/debug (Visual Basic)](/dotnet/visual-basic/reference/command-line-compiler/debug).
## Tasks
The following table lists examples of tasks that involve the `My.Application.UnhandledException` event.
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+BOFActionEnum.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+BOFActionEnum.xml
index ea272e7b9e9..a560eff4e27 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+BOFActionEnum.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+BOFActionEnum.xml
@@ -22,16 +22,16 @@
Provides constants for compatibility with the Visual Basic 6.0 property.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+EOFActionEnum.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+EOFActionEnum.xml
index a906e167e1d..fa94b4b2478 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+EOFActionEnum.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+EOFActionEnum.xml
@@ -22,16 +22,16 @@
Provides constants for compatibility with the Visual Basic 6.0 property.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+ErrorDelegate.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+ErrorDelegate.xml
index 179e478b59a..5752891c41c 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+ErrorDelegate.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+ErrorDelegate.xml
@@ -41,13 +41,13 @@
A that determines whether the user can cancel the error dialog box.
Represents the method that will handle an event.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+FetchCompleteDelegate.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+FetchCompleteDelegate.xml
index 38d4f7fac11..80949c4c7ac 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+FetchCompleteDelegate.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+FetchCompleteDelegate.xml
@@ -37,13 +37,13 @@
An object.
Represents the method that will handle a event.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+FieldChangeCompleteDelegate.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+FieldChangeCompleteDelegate.xml
index e78b49622cb..162508e2ae5 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+FieldChangeCompleteDelegate.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+FieldChangeCompleteDelegate.xml
@@ -41,13 +41,13 @@
An object.
Represents the method that will handle a event.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+OrientationEnum.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+OrientationEnum.xml
index bbda61fe89b..4d715b85285 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+OrientationEnum.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+OrientationEnum.xml
@@ -22,14 +22,14 @@
Provides constants for compatibility with the Visual Basic 6.0 property.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+RecordsetChangeCompleteDelegate.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+RecordsetChangeCompleteDelegate.xml
index 979fff1ff13..48888801293 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+RecordsetChangeCompleteDelegate.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+RecordsetChangeCompleteDelegate.xml
@@ -39,13 +39,13 @@
An .
Represents the method that will handle a event.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeFieldDelegate.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeFieldDelegate.xml
index 2a54f9ceb4b..51486091e76 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeFieldDelegate.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeFieldDelegate.xml
@@ -39,13 +39,13 @@
An object.
Represents the method that will handle a event.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeRecordDelegate.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeRecordDelegate.xml
index d388d6dc464..b569e92461d 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeRecordDelegate.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeRecordDelegate.xml
@@ -39,13 +39,13 @@
An object.
Represents the method that will handle a event.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeRecordsetDelegate.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeRecordsetDelegate.xml
index 68e8e0b4906..ec549f1c8e2 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeRecordsetDelegate.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillChangeRecordsetDelegate.xml
@@ -37,13 +37,13 @@
An object.
Represents the method that will handle a event.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillMoveDelegate.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillMoveDelegate.xml
index 5c414de4a56..0e0483095bc 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillMoveDelegate.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC+WillMoveDelegate.xml
@@ -37,13 +37,13 @@
An object.
Represents the method that will handle a event.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC.xml
index a328311cb72..aa8a16e18fd 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODC.xml
@@ -33,7 +33,7 @@
Use this control in applications upgraded from Visual Basic 6.0 to continue to use an `ADO` data connection. For new development, you should consider using `ADO.NET` instead of `ADO`. For more information, see [Comparison of ADO.NET and ADO](https://learn.microsoft.com/previous-versions/visualstudio/visual-studio-2008/904fck4k(v=vs.90)).
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -61,7 +61,7 @@
Provides compatibility with the Visual Basic 6.0 `ADO Data Control`.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -105,7 +105,7 @@
The `DataSourceListener` monitors a data set for data members that are added, removed, or changed when the is connected to a data source.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -150,7 +150,7 @@
Setting the `BackColor` property affects only the part of the control where text is displayed.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -195,7 +195,7 @@
You can use the `BOF` and properties to determine whether an object contains rows or whether you have gone beyond the limits of an as you move from row to row.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -241,7 +241,7 @@
Use this property to specify the behavior when the `MovePrevious` button is pressed and the first row of a is the current row.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -289,7 +289,7 @@
While you can change value during the life of the cursor, the change only affects the number of records in the cache after the next fetch from the data source.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -335,7 +335,7 @@
After this period of time has elapsed without completing the command, the provider raises an exception to the calling application and cancels the command.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -385,7 +385,7 @@
Setting this property optimizes the execution of the command.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -431,7 +431,7 @@
Use the `ConnectionString` property to specify a data source by passing a detailed connection string that contains a series of argument = value statements separated by semicolons.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -477,7 +477,7 @@
This property corresponds to the ADO `ConnectionTimeout` property.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -527,7 +527,7 @@
This property corresponds to the ADO Command and Connection `CursorLocation` property.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -577,7 +577,7 @@
Determines the cursor type to use when opening a .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -619,7 +619,7 @@
When the disposing parameter is `true`, this method releases all resources held by any managed objects that this control references. This method invokes the `Dispose()` method of each referenced object.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -661,7 +661,7 @@
An `EndOfRecordset` event may occur if the `MoveNext` operation fails.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -706,7 +706,7 @@
You can use the and `EOF` properties to determine whether an object contains rows or whether you have gone beyond the limits of an as you move from row to row.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -752,7 +752,7 @@
Use this property to specify the behavior when the `MoveNext` button is pressed when the first row of a is the current row.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -784,7 +784,7 @@
Use this event to handle exceptions that derive from the underlying OLE DB `DataSource`.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -822,7 +822,7 @@
For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -860,7 +860,7 @@
For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -898,7 +898,7 @@
For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -938,7 +938,7 @@
## Remarks
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -974,7 +974,7 @@
Used internally to return a count of data members for the .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1013,7 +1013,7 @@
Used internally to return the name of a data member for a .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1063,7 +1063,7 @@
In order to maintain sufficient control over the data being updated, `ADO` provides a number of concurrency options that control how other users are granted, or refused access to the data being updated.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1109,7 +1109,7 @@
This property corresponds to the ADO `Recordset.MaxRecords` property.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1159,7 +1159,7 @@
This property corresponds to the ADO `Mode` property.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1197,7 +1197,7 @@
For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1235,7 +1235,7 @@
The `OnResize` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1288,7 +1288,7 @@
This property corresponds to the ADO `Recordset.MaxRecords` property.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1330,7 +1330,7 @@
This property setting is write-only. It may only be provided in code, it cannot be read back from the `Password` property.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1368,7 +1368,7 @@
For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1414,7 +1414,7 @@
By using the `Recordset` property, you can use the methods, properties, and events of the ADO `ADODB.Recordset` Object.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1452,7 +1452,7 @@
For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1498,7 +1498,7 @@
The `RecordSource` contains both the name of a database table and a valid SQL string using syntax appropriate for the data source.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1534,7 +1534,7 @@
## Remarks
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1578,7 +1578,7 @@
The `DataSourceListener` monitors a data set for data members that are added, removed, or changed when the is connected to a data source.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1632,7 +1632,7 @@
Use this property to communicate information such as the number of the current record to the user.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1678,7 +1678,7 @@
The user-name syntax depends on the data source. When a `UserName` and are supplied, the control uses the values to create a connection string ( property).
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1715,7 +1715,7 @@
## Remarks
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1752,7 +1752,7 @@
## Remarks
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1789,7 +1789,7 @@
## Remarks
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1826,7 +1826,7 @@
## Remarks
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODCArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODCArray.xml
index b865eba878d..488f11fc9d1 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODCArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ADODCArray.xml
@@ -35,14 +35,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -78,14 +78,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -116,14 +116,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -148,16 +148,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -182,16 +182,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -216,16 +216,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -264,14 +264,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -296,16 +296,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -330,14 +330,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -362,18 +362,18 @@
Occurs when an in an is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -398,16 +398,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -432,14 +432,14 @@
Occurs when an control is loaded.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -464,16 +464,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -498,16 +498,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -532,14 +532,14 @@
Occurs when an control in an is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -564,14 +564,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -597,16 +597,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -632,16 +632,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -667,16 +667,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -702,16 +702,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -742,16 +742,16 @@
Occurs when the property of an control changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -776,34 +776,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -828,14 +828,14 @@
Occurs when an exception is raised for an control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -866,14 +866,14 @@
Occurs when an control completes a fetch from a database.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -904,14 +904,14 @@
Occurs while an control is fetching data from a database.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -942,14 +942,14 @@
Occurs when an update to a in a for an control is complete.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -974,16 +974,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1008,16 +1008,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1044,14 +1044,14 @@
Overrides .
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this method is usually not called directly but is instead called by a derived class.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1080,14 +1080,14 @@
Gets the index of an in a .
A that represents the index of the specified .
-
-
+
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1112,16 +1112,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1147,16 +1147,16 @@
Occurs when the user requests Help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1186,14 +1186,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1218,14 +1218,14 @@
Occurs when value of the property changes.
- property is changed by either a programmatic modification or user interaction. For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction. For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1255,19 +1255,19 @@
Gets a specific element of an by index. Read-only.
An at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1292,24 +1292,24 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1335,28 +1335,28 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1382,24 +1382,24 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1425,16 +1425,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1460,34 +1460,34 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1513,16 +1513,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1547,30 +1547,30 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
-
-
- `MouseDown`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+ `MouseDown`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1596,26 +1596,26 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1641,32 +1641,32 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
- /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+ /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1692,26 +1692,26 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1737,26 +1737,26 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1782,26 +1782,26 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1827,14 +1827,14 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1866,14 +1866,14 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when a , , or method has occurred in a for an control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1898,16 +1898,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the control is redrawn.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1933,16 +1933,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1967,16 +1967,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2002,14 +2002,14 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2041,14 +2041,14 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the current record has changed in the of an control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2079,14 +2079,14 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the for an control changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2120,14 +2120,14 @@ MsgBox(CStr(ADODCArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2152,18 +2152,18 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2189,16 +2189,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2234,14 +2234,14 @@ MsgBox(CStr(ADODCArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2276,13 +2276,13 @@ MsgBox(CStr(ADODCArray(1).Text))
Returns a value that indicates whether an control is a member of this .
If the specified is a member of a different , returns .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2307,16 +2307,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2341,18 +2341,18 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2377,16 +2377,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2412,16 +2412,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2446,16 +2446,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2480,46 +2480,46 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2545,46 +2545,46 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2610,16 +2610,16 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2650,14 +2650,14 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs before a in the of an control changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2688,14 +2688,14 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs before the current record in a of an control changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2726,14 +2726,14 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs before the of an control changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2764,14 +2764,14 @@ MsgBox(CStr(ADODCArray(1).Text))
Occurs before the , , or method of a of an control executes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/BaseControlArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/BaseControlArray.xml
index d89e0ccf778..10498503570 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/BaseControlArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/BaseControlArray.xml
@@ -33,7 +33,7 @@
You do not typically inherit from `BaseControlArray`. To create your own control array, inherit from one of the control array classes in the `Microsoft.VisualBasic.Compatibility.VB6` namespace.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -70,7 +70,7 @@
The class is the base class for all control arrays used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -102,7 +102,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this constructor is usually not called directly but is instead called by a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -139,7 +139,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this `Protected` method is usually not called directly but is instead called by a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -180,7 +180,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this `Protected` method is usually not called directly but is instead called by a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -219,7 +219,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this `Protected` method is usually not called directly but is instead called by a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -259,7 +259,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. -
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -297,7 +297,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this `Protected` method is usually not called directly but is instead called by a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -337,7 +337,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this `Protected` method is usually not called directly but is instead called by a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -371,7 +371,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -402,7 +402,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -433,7 +433,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -468,7 +468,7 @@
The class is the base class for all control arrays used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -538,7 +538,7 @@
The class is the base class for all control arrays used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -601,7 +601,7 @@
The class is the base class for all control arrays used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -638,7 +638,7 @@
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -672,7 +672,7 @@
The class is the base class for all control arrays used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -707,7 +707,7 @@
The class is the base class for all control arrays used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -744,7 +744,7 @@
The class is the base class for all control arrays used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -779,7 +779,7 @@
Design environments typically use this method to start the initialization of a component that is used on a form or used by another component. The method ends the initialization. Using the `BeginInit` and methods prevents the control from being used before it is fully initialized. The initialization occurs at run time.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -814,7 +814,7 @@
Design environments typically use this method to finish the initialization of a component that is used on a form or used by another component. The `EndInit` method ends the initialization. Using the and `EndInit` methods prevents the control from being used before it is fully initialized. The initialization occurs at run time.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -849,7 +849,7 @@
The class is the base class for all control arrays used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -884,12 +884,12 @@
This method is the equivalent of the Visual Basic 6.0 `Unload` function for dynamically removing a control array element.
> [!NOTE]
-> Only controls that were added dynamically by using the method can be removed from the control array.
+> Only controls that were added dynamically by using the method can be removed from the control array.
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/BaseOcxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/BaseOcxArray.xml
index 6201967b073..65ec20a78b3 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/BaseOcxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/BaseOcxArray.xml
@@ -23,14 +23,14 @@
Provides a control array of ActiveX controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -66,14 +66,14 @@
Initializes a new instance of the class.
- method to create the initial element in the array.
-
+ method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -104,14 +104,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- method to create the initial element in the array.
-
+ method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -136,16 +136,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -170,16 +170,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -210,16 +210,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -244,16 +244,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -278,14 +278,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -310,14 +310,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -342,16 +342,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -376,14 +376,14 @@
Occurs when the control is entered.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -412,14 +412,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -444,34 +444,34 @@
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -497,16 +497,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -531,16 +531,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -565,29 +565,29 @@
Occurs when the control loses or gains mouse capture.
- event instead of the second `MouseClick` event.
-
+ event instead of the second `MouseClick` event.
+
> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -612,14 +612,14 @@
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -645,16 +645,16 @@
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -679,16 +679,16 @@
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -713,16 +713,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -747,18 +747,18 @@
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -784,16 +784,16 @@
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -818,16 +818,16 @@
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -853,46 +853,46 @@
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -918,46 +918,46 @@
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
- `Validating`
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validating`
-
- `Validated`
-
- If the property is set to `false`, the `Validating` and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Validating`
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validating`
+
+ `Validated`
+
+ If the property is set to `false`, the `Validating` and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -983,16 +983,16 @@
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/BindingCollectionEnumerator.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/BindingCollectionEnumerator.xml
index ae6f1b13d91..1c8afa1ba7d 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/BindingCollectionEnumerator.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/BindingCollectionEnumerator.xml
@@ -31,14 +31,14 @@
Supports a simple iteration over a binding collection in an application upgraded from Visual Basic 6.0.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -67,14 +67,14 @@
Gets the current element in the binding collection.
The current element in the collection.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -105,14 +105,14 @@
if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the collection.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -141,14 +141,14 @@
Sets the enumerator to its initial position, which is before the first element in the collection.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ButtonArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ButtonArray.xml
index 91a5a7fcfb0..9454a953aa1 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ButtonArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ButtonArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -212,16 +212,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -246,16 +246,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -280,16 +280,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -328,14 +328,14 @@
if is a member of the control array; otherwise, .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -360,16 +360,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -394,14 +394,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -426,18 +426,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -462,16 +462,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -502,16 +502,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -536,16 +536,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -570,14 +570,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -602,14 +602,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -634,16 +634,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -668,16 +668,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -702,14 +702,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -735,16 +735,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -770,16 +770,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -805,16 +805,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -840,16 +840,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -874,34 +874,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -926,16 +926,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -960,16 +960,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -996,14 +996,14 @@
Overrides .
The type of control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1032,14 +1032,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- or .
-
+ or .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1064,16 +1064,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1099,16 +1099,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1138,14 +1138,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1174,19 +1174,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1211,24 +1211,24 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1254,28 +1254,28 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1301,24 +1301,24 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1344,16 +1344,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1379,34 +1379,34 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1432,16 +1432,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1466,16 +1466,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1500,14 +1500,14 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1533,27 +1533,27 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
- `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1579,26 +1579,26 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
- / `MouseDown` /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / `MouseDown` /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1624,26 +1624,26 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1669,30 +1669,30 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover` / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover` / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1718,26 +1718,26 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1763,26 +1763,26 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1808,26 +1808,26 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1853,14 +1853,14 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1886,16 +1886,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1920,16 +1920,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control is redrawn.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1955,16 +1955,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1989,16 +1989,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2024,14 +2024,14 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2057,16 +2057,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2100,14 +2100,14 @@ MsgBox(CStr(ButtonArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2132,18 +2132,18 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get it's property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get it's property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2169,16 +2169,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2214,14 +2214,14 @@ MsgBox(CStr(ButtonArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2257,14 +2257,14 @@ MsgBox(CStr(ButtonArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2289,16 +2289,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2323,18 +2323,18 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2359,16 +2359,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2394,16 +2394,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2428,16 +2428,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2462,16 +2462,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2496,46 +2496,46 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2561,46 +2561,46 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2626,16 +2626,16 @@ MsgBox(CStr(ButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/CheckBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/CheckBoxArray.xml
index b63e1d6556c..23977182fc9 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/CheckBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/CheckBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -212,16 +212,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -246,16 +246,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -280,16 +280,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -314,16 +314,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -362,14 +362,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -394,16 +394,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -428,14 +428,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -460,16 +460,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -494,16 +494,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -528,18 +528,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -564,16 +564,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -604,16 +604,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -638,16 +638,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -672,14 +672,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -704,14 +704,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -736,16 +736,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -770,16 +770,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -804,14 +804,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -837,16 +837,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -872,16 +872,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -907,16 +907,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -942,16 +942,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -976,34 +976,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1028,16 +1028,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1062,16 +1062,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1098,14 +1098,14 @@
Overrides .
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this method is usually not called directly but is instead called by a derived class.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1134,14 +1134,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1166,16 +1166,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1201,16 +1201,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1240,14 +1240,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1276,19 +1276,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1313,24 +1313,24 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1356,28 +1356,28 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1403,24 +1403,24 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1446,16 +1446,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1481,34 +1481,34 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1534,16 +1534,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1568,16 +1568,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1602,14 +1602,14 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1635,29 +1635,29 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
-
-
- `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1683,26 +1683,26 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
- / `MouseDown` /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / `MouseDown` /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1728,26 +1728,26 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1773,30 +1773,30 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover` / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover` / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1822,26 +1822,26 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1867,26 +1867,26 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1912,26 +1912,26 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1957,14 +1957,14 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1990,16 +1990,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2024,16 +2024,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control is redrawn.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2059,16 +2059,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2093,16 +2093,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2128,14 +2128,14 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2161,16 +2161,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2204,14 +2204,14 @@ MsgBox(CStr(CheckBoxArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2236,18 +2236,18 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get it's property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get it's property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2273,16 +2273,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2318,14 +2318,14 @@ MsgBox(CStr(CheckBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2361,14 +2361,14 @@ MsgBox(CStr(CheckBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2393,16 +2393,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2427,18 +2427,18 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2463,16 +2463,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2498,16 +2498,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2532,16 +2532,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2566,16 +2566,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2600,46 +2600,46 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2665,46 +2665,46 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2730,16 +2730,16 @@ MsgBox(CStr(CheckBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/CheckedListBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/CheckedListBoxArray.xml
index cf37bad1e8e..e8237d3607e 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/CheckedListBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/CheckedListBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -226,14 +226,14 @@
if is a member of the control array; otherwise, .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -258,16 +258,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -292,14 +292,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -324,18 +324,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -360,16 +360,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -400,16 +400,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -434,16 +434,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -468,14 +468,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -500,14 +500,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -532,16 +532,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -566,16 +566,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -600,14 +600,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -632,14 +632,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -665,16 +665,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -700,16 +700,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -735,16 +735,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -770,16 +770,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -804,34 +804,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -856,16 +856,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -890,16 +890,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -924,14 +924,14 @@
Occurs when the control is bound to a data value.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -956,16 +956,16 @@
Occurs when value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -990,16 +990,16 @@
Occurs when value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1026,14 +1026,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1062,14 +1062,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1094,16 +1094,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1129,16 +1129,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1168,14 +1168,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1200,16 +1200,16 @@
Occurs when value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1238,19 +1238,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1275,16 +1275,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the checked state of an item changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1309,24 +1309,24 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1352,28 +1352,28 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1399,24 +1399,24 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1442,16 +1442,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1477,34 +1477,34 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1530,16 +1530,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1564,16 +1564,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1598,14 +1598,14 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1631,29 +1631,29 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
-
-
- `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1679,37 +1679,37 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when a control is double-clicked by the mouse.
-
-
-
-
-
-
-
-
-
-
-
-
- `MouseDoubleClick`
-
-
-
-> [!NOTE]
-> `DoubleClick` events are logically higher-level events of a control. They may be raised by other user actions, such as shortcut key combinations.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+
+
+
+
+
+
+ `MouseDoubleClick`
+
+
+
+> [!NOTE]
+> `DoubleClick` events are logically higher-level events of a control. They may be raised by other user actions, such as shortcut key combinations.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1734,30 +1734,30 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
-
-
- `MouseDown`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+ `MouseDown`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1783,30 +1783,30 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
-
-
-
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1832,34 +1832,34 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
-
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1885,26 +1885,26 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1930,26 +1930,26 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1975,26 +1975,26 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2020,14 +2020,14 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2053,16 +2053,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2087,16 +2087,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2121,16 +2121,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2156,16 +2156,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2191,16 +2191,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2234,14 +2234,14 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2266,18 +2266,18 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get it's property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get it's property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2303,16 +2303,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2337,16 +2337,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the selected index in a control array changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2372,16 +2372,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the property changes.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2417,14 +2417,14 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2460,14 +2460,14 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2492,16 +2492,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2526,18 +2526,18 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2562,16 +2562,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2597,16 +2597,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2631,16 +2631,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2665,46 +2665,46 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2730,46 +2730,46 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2795,16 +2795,16 @@ MsgBox(CStr(CheckedListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ColorDialogArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ColorDialogArray.xml
index 6a3dc55dec4..2a8e3211270 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ColorDialogArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ColorDialogArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -158,14 +158,14 @@
if is a member of the control array; otherwise, .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -192,14 +192,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -228,14 +228,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -260,16 +260,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -299,14 +299,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -335,19 +335,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -381,14 +381,14 @@ MsgBox(CStr(ColorDialogArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -424,14 +424,14 @@ MsgBox(CStr(ColorDialogArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -467,14 +467,14 @@ MsgBox(CStr(ColorDialogArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ComboBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ComboBoxArray.xml
index 787ea33da2d..d31421e9937 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ComboBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ComboBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -226,14 +226,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -258,16 +258,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -292,14 +292,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -324,18 +324,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -360,16 +360,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -400,16 +400,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -434,16 +434,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -468,14 +468,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -500,14 +500,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -532,16 +532,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -566,16 +566,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -600,16 +600,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -634,16 +634,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -668,14 +668,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -700,14 +700,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -733,16 +733,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -768,16 +768,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -803,16 +803,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -838,16 +838,16 @@
Occurs when a visual aspect of an owner-drawn changes.
- .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -872,14 +872,14 @@
Occurs when the drop-down part of a is shown.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -904,16 +904,16 @@
Occurs when the drop-down part of the is no longer visible.
- from changes you made in response to the event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ from changes you made in response to the event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -938,16 +938,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -972,16 +972,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1006,14 +1006,14 @@
Occurs when the control is entered.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1038,16 +1038,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1072,16 +1072,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1106,16 +1106,16 @@
Occurs when the control is bound to a data value.
- is formatted. Handling this event gives you access to the string to be displayed for this list item, through the `Value` property of the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is formatted. Handling this event gives you access to the string to be displayed for this list item, through the `Value` property of the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1140,16 +1140,16 @@
Occurs when value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1174,16 +1174,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1210,14 +1210,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1246,14 +1246,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1278,16 +1278,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1312,16 +1312,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1351,14 +1351,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1383,16 +1383,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1421,19 +1421,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1458,24 +1458,24 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1501,28 +1501,28 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1548,24 +1548,24 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1591,16 +1591,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1626,34 +1626,34 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1679,16 +1679,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1713,16 +1713,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1747,16 +1747,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs every time that an owner-drawn item has to be drawn and when the sizes of the list items are determined.
- event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1781,29 +1781,29 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control loses or gains mouse capture.
-
-
-
-
- `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
+
+
+
+
+ `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1828,29 +1828,29 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
-
-
- `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1876,29 +1876,29 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control is double-clicked by the mouse.
-
-
-
-
-
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
-
-> [!NOTE]
-> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
+
+> [!NOTE]
+> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1924,26 +1924,26 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
- / `MouseDown` /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / `MouseDown` /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1969,26 +1969,26 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2014,30 +2014,30 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover` / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover` / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2063,26 +2063,26 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2108,26 +2108,26 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2153,26 +2153,26 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2198,14 +2198,14 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2231,16 +2231,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2265,16 +2265,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2299,16 +2299,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2334,16 +2334,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2369,16 +2369,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2412,14 +2412,14 @@ MsgBox(CStr(ComboBoxArray(1).Text))
A .
Not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2444,18 +2444,18 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2481,16 +2481,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2515,16 +2515,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2549,16 +2549,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2583,16 +2583,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the selected item has changed and that change is displayed in the .
- or to capture user changes, because those events are also raised when the selection changes programmatically.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or to capture user changes, because those events are also raised when the selection changes programmatically.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2628,14 +2628,14 @@ MsgBox(CStr(ComboBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2671,14 +2671,14 @@ MsgBox(CStr(ComboBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2703,16 +2703,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2737,18 +2737,18 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2773,16 +2773,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2808,16 +2808,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2842,16 +2842,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2876,16 +2876,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2910,16 +2910,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control has formatted the text, but before the text is displayed.
- property is programmatically changed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is programmatically changed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2944,46 +2944,46 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3009,46 +3009,46 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3074,16 +3074,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3108,16 +3108,16 @@ MsgBox(CStr(ComboBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/DBKINDENUM.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/DBKINDENUM.xml
index 128e50ed4fd..8087a3fcfdd 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/DBKINDENUM.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/DBKINDENUM.xml
@@ -26,13 +26,13 @@
Provides an enumeration for use by the tools for upgrading Visual Basic 6.0 applications to Visual Basic.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/DirListBox.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/DirListBox.xml
index de84f800d4d..5a6dc9f83d7 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/DirListBox.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/DirListBox.xml
@@ -35,7 +35,7 @@
Set the , , and properties to enable a user to access items in a list. If you also display the and controls, you can write code to synchronize them with the control and with each other.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -65,7 +65,7 @@
A `DirListBox` control displays directories and paths at run time.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -99,7 +99,7 @@
The `Change` event occurs when the selection in a control changes, either when the user double-clicks a new directory or when you change the property setting through code.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -147,7 +147,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -195,7 +195,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -245,7 +245,7 @@
For a control, the `Index` number sequence is based on the current directories and subdirectories when the control is created at run time.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -289,7 +289,7 @@
Use this property to return the number of subdirectories in the currently selected directory. The `DirListCount` property works together with the and properties.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -335,7 +335,7 @@
The expression `instance.DirList(instance.DirListIndex)` returns the string for the currently selected directory.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -379,7 +379,7 @@
When the disposing parameter is `true`, this method releases all resources held by any managed objects that this control references. This method invokes the `Dispose()` method of each referenced object.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -427,7 +427,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -475,7 +475,7 @@
This property is not required for the control; the does not support items of variable height. It is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -523,7 +523,7 @@
This property should not be used for the control; trying to add or remove directories from the collection could cause an exception. It is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -572,7 +572,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -616,7 +616,7 @@
The `OnBackColorChanged` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -658,7 +658,7 @@
The `OnChanged` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -705,7 +705,7 @@
The `OnDoubleClick` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -748,7 +748,7 @@
The `OnDrawItem` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -791,7 +791,7 @@
The `OnFontChanged` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -834,7 +834,7 @@
The `OnHandleCreated` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -877,7 +877,7 @@
The `OnSelectedIndexChanged` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -940,7 +940,7 @@
Changing the value of `Path` for a control generates an event.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -974,7 +974,7 @@
## Remarks
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1025,7 +1025,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1074,7 +1074,7 @@
For the control, `Sorted` always returns false.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -1122,7 +1122,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/DirListBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/DirListBoxArray.xml
index 3809abd395f..f26745a8a3d 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/DirListBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/DirListBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -226,14 +226,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -258,16 +258,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -292,16 +292,16 @@
Occurs when the contents of a control has changed.
- control changes, either when the user double-clicks a new directory or when you change the property setting through code.
-
- For more information about handling events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ control changes, either when the user double-clicks a new directory or when you change the property setting through code.
+
+ For more information about handling events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -326,14 +326,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -358,16 +358,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -392,16 +392,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -426,16 +426,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -460,16 +460,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -494,16 +494,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -528,14 +528,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -560,14 +560,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -593,16 +593,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -628,16 +628,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -663,16 +663,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -698,16 +698,16 @@
Occurs when a visual aspect of an owner-drawn changes.
- .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -732,16 +732,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -766,34 +766,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -818,16 +818,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -852,16 +852,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -888,14 +888,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -924,14 +924,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -956,16 +956,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -991,16 +991,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1030,14 +1030,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1062,16 +1062,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1100,19 +1100,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1137,24 +1137,24 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1180,28 +1180,28 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1227,24 +1227,24 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1270,16 +1270,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1305,34 +1305,34 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1358,16 +1358,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1392,16 +1392,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs each time an owner-drawn item needs to be drawn and when the sizes of the list items are determined.
- event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1426,30 +1426,30 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
-
-
- `MouseDown`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+ `MouseDown`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1475,26 +1475,26 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
--
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+-
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1520,32 +1520,32 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1571,26 +1571,26 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1616,26 +1616,26 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1661,26 +1661,26 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1706,14 +1706,14 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1739,16 +1739,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1773,16 +1773,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1808,14 +1808,14 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1850,14 +1850,14 @@ MsgBox(CStr(DirListBoxArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1882,18 +1882,18 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1919,16 +1919,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1953,16 +1953,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1987,16 +1987,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2032,14 +2032,14 @@ MsgBox(CStr(DirListBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2075,14 +2075,14 @@ MsgBox(CStr(DirListBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2107,16 +2107,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2141,18 +2141,18 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2177,16 +2177,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2212,16 +2212,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2246,16 +2246,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2280,46 +2280,46 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2345,46 +2345,46 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2410,16 +2410,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2444,16 +2444,16 @@ MsgBox(CStr(DirListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/DriveListBox.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/DriveListBox.xml
index 42682c9f4c1..a8b023bf003 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/DriveListBox.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/DriveListBox.xml
@@ -35,7 +35,7 @@
If you also display the and controls, you can write code to synchronize them with the `DriveListBox` control and with each other.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -65,7 +65,7 @@
A `DriveListBox` control enables a user to select a valid disk drive at run time.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -113,7 +113,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -161,7 +161,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -201,7 +201,7 @@
When the disposing parameter is `true`, this method releases all resources held by any managed objects that this control references. This method invokes the `Dispose()` method of each referenced object.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -249,7 +249,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -297,7 +297,7 @@
The valid drives for the `Drive` property include all drives present in or connected to the system when the control is created or refreshed at run time. The default setting of the `Drive` property is the current drive.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -347,7 +347,7 @@
If you set the `DropDownStyle` property to , you can select only valid values from the list. If you set the `DropDownStyle` property to , you can type any value in the editable area of the .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -391,7 +391,7 @@
This property is not required for the control; the does not support items of variable height. It is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -448,7 +448,7 @@
Use this property to retrieve a list of drives that are currently displayed in a .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -496,7 +496,7 @@
Use this property to retrieve the name of a drive in a .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -544,7 +544,7 @@
Use this property to limit the length of text that a user can enter into the .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -584,7 +584,7 @@
The `OnBackColorChanged` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -627,7 +627,7 @@
The `OnDrawItem` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -670,7 +670,7 @@
The `OnFontChanged` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -713,7 +713,7 @@
The `OnHandleCreated` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -756,7 +756,7 @@
The `OnSelectedIndexChanged` method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -797,7 +797,7 @@
## Remarks
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -849,7 +849,7 @@
For the control, `Sorted` always returns `false`.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -897,7 +897,7 @@
If the `Text` is a valid drive, the value of the `Text` property is the same e as the property.
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -945,7 +945,7 @@
This property should not be set for the control; it is provided only because the control inherits from .
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
@@ -985,7 +985,7 @@
The `WndProc` method corresponds exactly to the Windows `WindowProc` function. For more information about processing Windows messages, see [WindowProc callback function](https://learn.microsoft.com/previous-versions/windows/desktop/legacy/ms633573(v=vs.85)).
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/DriveListBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/DriveListBoxArray.xml
index 7ba06525638..bc7bc78814e 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/DriveListBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/DriveListBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -226,14 +226,14 @@
if is a member of the control array; otherwise, .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -258,16 +258,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -292,14 +292,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -324,18 +324,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -360,16 +360,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -394,16 +394,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -428,16 +428,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -462,16 +462,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -496,14 +496,14 @@
Occurs when the value of the property changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -529,14 +529,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -561,14 +561,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -594,16 +594,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -629,16 +629,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -664,16 +664,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -699,16 +699,16 @@
Occurs when a visual aspect of an owner-drawn changes.
- .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -733,14 +733,14 @@
Occurs when the drop-down portion of a is shown.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -765,16 +765,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -799,16 +799,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -833,34 +833,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -885,16 +885,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -919,16 +919,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -955,14 +955,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -991,14 +991,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1023,16 +1023,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1058,16 +1058,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1097,14 +1097,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1129,16 +1129,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1167,19 +1167,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1204,24 +1204,24 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1247,28 +1247,28 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1294,24 +1294,24 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1337,16 +1337,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1372,34 +1372,34 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1425,16 +1425,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1459,16 +1459,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs each time an owner-drawn item needs to be drawn and when the sizes of the list items are determined.
- event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1493,30 +1493,30 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
-
-
- `MouseDown`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+ `MouseDown`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1542,26 +1542,26 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1587,32 +1587,32 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
- /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+ /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1638,26 +1638,26 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1683,26 +1683,26 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1728,26 +1728,26 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1773,14 +1773,14 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1806,16 +1806,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1840,16 +1840,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1875,14 +1875,14 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1917,14 +1917,14 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1949,18 +1949,18 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1986,16 +1986,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2020,16 +2020,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2054,16 +2054,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2088,16 +2088,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the selected item has changed and that change is displayed in the .
- or to capture user changes, because those events are also raised when the selection changes programmatically.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or to capture user changes, because those events are also raised when the selection changes programmatically.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2133,14 +2133,14 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2176,14 +2176,14 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2208,16 +2208,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2242,18 +2242,18 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2278,16 +2278,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2313,16 +2313,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2347,16 +2347,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2381,16 +2381,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2415,46 +2415,46 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2480,46 +2480,46 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2545,16 +2545,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2579,16 +2579,16 @@ MsgBox(CStr(DriveListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/FileListBox.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/FileListBox.xml
index 11b0505ed4f..84b3c3338a7 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/FileListBox.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/FileListBox.xml
@@ -864,7 +864,7 @@
Use the `ReadOnly` property for a control to specify whether files that have read-only attributes are displayed in the file list or not.
> [!NOTE]
-> If the property is set to `true` (the default), files that have read-only attributes are displayed regardless of the `ReadOnly` property setting.
+> If the property is set to `true` (the default), files that have read-only attributes are displayed regardless of the `ReadOnly` property setting.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/FileListBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/FileListBoxArray.xml
index 11dbe5db931..b459e822eb7 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/FileListBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/FileListBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -226,14 +226,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -258,16 +258,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -292,14 +292,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -324,16 +324,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -358,16 +358,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -392,16 +392,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -426,16 +426,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -460,16 +460,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -494,14 +494,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -526,14 +526,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -559,16 +559,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -594,16 +594,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -629,16 +629,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -664,16 +664,16 @@
Occurs when a visual aspect of an owner-drawn changes.
- .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -698,16 +698,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -732,34 +732,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -784,16 +784,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -818,16 +818,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -854,14 +854,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -890,14 +890,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -922,16 +922,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -957,16 +957,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -996,14 +996,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1028,16 +1028,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1066,19 +1066,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1103,24 +1103,24 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1146,28 +1146,28 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1193,24 +1193,24 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1236,16 +1236,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1271,34 +1271,34 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1324,16 +1324,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1358,16 +1358,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs every time an owner-drawn item has to be drawn and when the sizes of the list items are determined.
- event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1392,30 +1392,30 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
-
-
- `MouseDown`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+
+
+ `MouseDown`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1441,26 +1441,26 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1486,32 +1486,32 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
- /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+ /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1537,26 +1537,26 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1582,26 +1582,26 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1627,26 +1627,26 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1672,14 +1672,14 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1705,16 +1705,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1739,13 +1739,13 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the path is changed by setting the or property in code.
- control. When you assign a string that contains a new path to the property, the control invokes the `PathChange` event.
-
- [!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
-
+ control. When you assign a string that contains a new path to the property, the control invokes the `PathChange` event.
+
+ [!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
+
]]>
@@ -1770,11 +1770,11 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the file listing pattern, such as "*.\*", is changed by setting the or property in code.
- control. When you assign a string that contains a new pattern to the property, the `FileListBox` invokes the event.
-
+ control. When you assign a string that contains a new pattern to the property, the `FileListBox` invokes the event.
+
]]>
@@ -1799,14 +1799,14 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1832,14 +1832,14 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1874,14 +1874,14 @@ MsgBox(CStr(FileListBoxArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1906,18 +1906,18 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1943,16 +1943,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1977,16 +1977,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2011,16 +2011,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2056,14 +2056,14 @@ MsgBox(CStr(FileListBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2099,14 +2099,14 @@ MsgBox(CStr(FileListBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2131,16 +2131,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2165,18 +2165,18 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2201,16 +2201,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2236,16 +2236,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2270,16 +2270,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2304,46 +2304,46 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2369,46 +2369,46 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2434,16 +2434,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2468,16 +2468,16 @@ MsgBox(CStr(FileListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/FontDialogArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/FontDialogArray.xml
index 19b5286706a..c57ed9f644b 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/FontDialogArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/FontDialogArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the user clicks the button in the font dialog box.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -192,14 +192,14 @@
if is a member of the control array; otherwise, .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -226,14 +226,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -262,14 +262,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -294,16 +294,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -333,14 +333,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -369,19 +369,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -415,14 +415,14 @@ MsgBox(CStr(FontDialogArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -458,14 +458,14 @@ MsgBox(CStr(FontDialogArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -501,14 +501,14 @@ MsgBox(CStr(FontDialogArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/FormShowConstants.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/FormShowConstants.xml
index 2cfee01dbae..a3a343b7e0c 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/FormShowConstants.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/FormShowConstants.xml
@@ -22,16 +22,16 @@
Provides constants for compatibility with the Visual Basic 6.0 method.
- and .
-
- These constants enable code that has been upgraded from Visual Basic 6.0 to continue to run without additional modification.
-
+ and .
+
+ These constants enable code that has been upgraded from Visual Basic 6.0 to continue to run without additional modification.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/GroupBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/GroupBoxArray.xml
index 1344a2c46a8..b24571cc33f 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/GroupBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/GroupBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -212,16 +212,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -246,16 +246,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -280,16 +280,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -328,14 +328,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -360,16 +360,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -394,14 +394,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -426,16 +426,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -466,16 +466,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -500,16 +500,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -534,14 +534,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -566,14 +566,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -598,16 +598,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -632,16 +632,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -666,14 +666,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -699,16 +699,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -734,16 +734,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -769,16 +769,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -804,16 +804,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -838,34 +838,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -890,16 +890,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -924,16 +924,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -960,14 +960,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -996,14 +996,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1028,16 +1028,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1063,16 +1063,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1102,14 +1102,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1134,16 +1134,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1172,19 +1172,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1209,16 +1209,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1244,34 +1244,34 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1297,16 +1297,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1331,16 +1331,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1365,14 +1365,14 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1398,32 +1398,32 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
- /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+ /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1449,14 +1449,14 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1482,16 +1482,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1516,16 +1516,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the control is redrawn.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1551,16 +1551,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1585,16 +1585,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1620,14 +1620,14 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1653,16 +1653,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1696,14 +1696,14 @@ MsgBox(CStr(GroupBoxArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1728,18 +1728,18 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1765,16 +1765,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1810,14 +1810,14 @@ MsgBox(CStr(GroupBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1853,14 +1853,14 @@ MsgBox(CStr(GroupBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1885,16 +1885,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1919,18 +1919,18 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1955,16 +1955,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1990,16 +1990,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2024,16 +2024,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2058,46 +2058,46 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2123,46 +2123,46 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2188,16 +2188,16 @@ MsgBox(CStr(GroupBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/HScrollBarArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/HScrollBarArray.xml
index a3659b09069..cd6634d24d2 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/HScrollBarArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/HScrollBarArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -192,14 +192,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -224,16 +224,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -258,14 +258,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -290,16 +290,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -330,16 +330,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -364,16 +364,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -398,14 +398,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -430,14 +430,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -462,16 +462,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -496,16 +496,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -530,14 +530,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -563,16 +563,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -598,16 +598,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -633,16 +633,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -668,16 +668,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -702,34 +702,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -756,14 +756,14 @@
Overrides .
This method must be overridden. The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this method is usually not called directly but is instead called by a derived class.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -792,19 +792,19 @@
Gets the index of an in an .
An at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -829,16 +829,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -864,16 +864,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -903,14 +903,14 @@ MsgBox(CStr(HScrollBarArray(1).Text))
An control.
Gets a value that determines whether a control is a member of an .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -939,19 +939,19 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Gets a specific element of an by index. Read-only.
An at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -976,24 +976,24 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1019,28 +1019,28 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1066,24 +1066,24 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1109,16 +1109,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1144,34 +1144,34 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1197,16 +1197,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1231,16 +1231,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1265,14 +1265,14 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1298,26 +1298,26 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1343,32 +1343,32 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
- /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+ /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1394,26 +1394,26 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1439,14 +1439,14 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1472,16 +1472,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1506,16 +1506,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1540,16 +1540,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1575,14 +1575,14 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1608,16 +1608,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1651,14 +1651,14 @@ MsgBox(CStr(HScrollBarArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1683,18 +1683,18 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1720,16 +1720,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1754,14 +1754,14 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the user scrolls the control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1797,14 +1797,14 @@ MsgBox(CStr(HScrollBarArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1840,14 +1840,14 @@ MsgBox(CStr(HScrollBarArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1872,16 +1872,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1906,18 +1906,18 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1942,16 +1942,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1977,16 +1977,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2011,16 +2011,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2045,46 +2045,46 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2110,46 +2110,46 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2175,16 +2175,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2209,16 +2209,16 @@ MsgBox(CStr(HScrollBarArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/IAccessor.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/IAccessor.xml
index da801d5b49e..57d4f932967 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/IAccessor.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/IAccessor.xml
@@ -28,13 +28,13 @@
Provides an implementation of the OLE DB interface for use by applications upgraded from Visual Basic 6.0.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -64,13 +64,13 @@
A pointer to memory in which to return the reference count of the accessor handle. If is a null pointer, no reference count is returned.
Adds a reference count to an existing accessor.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -108,13 +108,13 @@
A pointer to an array of values.
Creates an accessor from a set of bindings.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -148,13 +148,13 @@
A pointer to memory in which to return an array of structures.
Returns the bindings in an accessor.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -184,13 +184,13 @@
A pointer to memory in which to return the remaining reference count of the accessor handle.
Releases an accessor.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/IChapteredRowset.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/IChapteredRowset.xml
index 1d89e306815..bb6c744ba6c 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/IChapteredRowset.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/IChapteredRowset.xml
@@ -28,13 +28,13 @@
Provides an implementation of the OLE DB interface for use by applications upgraded from Visual Basic 6.0.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -64,13 +64,13 @@
A pointer to memory in which to return the reference count of the chapter handle.
Adds a reference count to an existing chapter.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -100,13 +100,13 @@
A pointer to memory in which to return the reference count of the chapter handle.
Releases a chapter.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/IConnectionPoint.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/IConnectionPoint.xml
index 80c9ab7f2d0..2a98b6e7860 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/IConnectionPoint.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/IConnectionPoint.xml
@@ -28,14 +28,14 @@
Provides an implementation of the OLE DB interface for use by applications upgraded from Visual Basic 6.0.
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -65,14 +65,14 @@
When this method returns, contains the connection cookie. This parameter is passed uninitialized.
Establishes an advisory connection between the connection point and the caller's sink object.
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -100,14 +100,14 @@
When this method returns, contains the newly created enumerator. This parameter is passed uninitialized.
Creates an enumerator object for iteration through the connections that exist to this connection point.
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -135,14 +135,14 @@
When this parameter returns, contains the IID of the outgoing interface managed by this connection point. This parameter is passed uninitialized.
Returns the IID of the outgoing interface managed by this connection point.
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -170,14 +170,14 @@
When this parameter returns, contains the connectable object's interface. This parameter is passed uninitialized.
Retrieves the interface pointer to the connectable object that conceptually owns this connection point.
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -205,14 +205,14 @@
The connection cookie previously returned from the method.
Closes an advisory connection that was previously established through the method.
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/IEnumConnectionPoints.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/IEnumConnectionPoints.xml
index e89f783bbdb..e26892dbf2c 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/IEnumConnectionPoints.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/IEnumConnectionPoints.xml
@@ -28,14 +28,14 @@
Manages the definition of the interface.
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -63,13 +63,13 @@
When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.
Creates a new enumerator that contains the same enumeration state as the current one.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -101,13 +101,13 @@
When this method returns, contains a reference to the actual number of connections enumerated in .
Retrieves a specified number of items in the enumeration sequence.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -132,13 +132,13 @@
Resets the enumeration sequence to the beginning.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -166,13 +166,13 @@
The number of elements to skip in the enumeration.
Skips a specified number of items in the enumeration sequence.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/IEnumConnections.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/IEnumConnections.xml
index cd520707007..42e78a82256 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/IEnumConnections.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/IEnumConnections.xml
@@ -28,14 +28,14 @@
Manages the definition of the interface.
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -63,13 +63,13 @@
When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.
Creates a new enumerator that contains the same enumeration state as the current one.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -101,13 +101,13 @@
When this method returns, contains a reference to the actual number of connections enumerated in .
Retrieves a specified number of items in the enumeration sequence.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -132,13 +132,13 @@
Resets the enumeration sequence to the start.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -166,13 +166,13 @@
The number of elements to skip in the enumeration.
Skips a specified number of items in the enumeration sequence.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowPositionChange.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowPositionChange.xml
index b0f684edcdb..2f74930e6fd 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowPositionChange.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowPositionChange.xml
@@ -28,13 +28,13 @@
Provides an implementation of the OLE DB interface for use by applications upgraded from Visual Basic 6.0.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -67,13 +67,13 @@
Notifies the consumer of a row position object of a change to the current row position.
An that represents the result.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowsetInfo.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowsetInfo.xml
index 056d027a66b..690fdec5d6f 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowsetInfo.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowsetInfo.xml
@@ -28,13 +28,13 @@
Provides an implementation of the OLE DB interface for use by applications upgraded from Visual Basic 6.0.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -68,13 +68,13 @@
A pointer to memory in which to return an array of structures.
Returns the current settings of all properties supported by the rowset.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -106,13 +106,13 @@
A pointer to memory in which to return an interface pointer on the rowset that interprets values from this column.
Returns an interface pointer to the rowset to which a bookmark or chapter applies.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -142,13 +142,13 @@
A pointer to memory in which to return the interface pointer.
Returns an interface pointer on the object (command or session) that created this rowset.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowsetNotify.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowsetNotify.xml
index 2f2ff6b3053..c4148010287 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowsetNotify.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/IRowsetNotify.xml
@@ -28,13 +28,13 @@
Provides an implementation of the OLE DB interface for use by applications upgraded from Visual Basic 6.0.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -75,13 +75,13 @@
Notifies the consumer of any change to the value of a column.
An representing the result.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -120,13 +120,13 @@
Notifies the consumer of the first change to a row or of any change that affects the entire row.
An representing the result.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -161,13 +161,13 @@
Notifies the consumer of any change affecting the entire rowset.
An representing the result.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ImageListArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ImageListArray.xml
index 7edb7f42cb3..c15f17b3bc5 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ImageListArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ImageListArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -158,14 +158,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -192,14 +192,14 @@
Overrides .
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this method is usually not called directly but is instead called by a derived class.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -228,14 +228,14 @@
Gets the index of an in an .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -264,14 +264,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -300,19 +300,19 @@
Gets a specific element of an by index. Read-only.
An at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -346,14 +346,14 @@ MsgBox(CStr(ImageListArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -389,14 +389,14 @@ MsgBox(CStr(ImageListArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -432,14 +432,14 @@ MsgBox(CStr(ImageListArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/LabelArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/LabelArray.xml
index cb3eb85e957..49fd0ad1d39 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/LabelArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/LabelArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -212,16 +212,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -260,14 +260,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -292,16 +292,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -326,14 +326,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -358,18 +358,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -394,16 +394,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -434,16 +434,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -468,16 +468,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -502,14 +502,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -534,14 +534,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -566,16 +566,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -600,16 +600,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -634,14 +634,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -666,14 +666,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -699,16 +699,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -734,16 +734,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -769,16 +769,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -804,16 +804,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -838,34 +838,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -890,16 +890,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -924,16 +924,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -960,14 +960,14 @@
Overrides .
This method must be overridden. The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this method is usually not called directly but is instead called by a derived class.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -996,14 +996,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1028,16 +1028,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1063,16 +1063,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1102,14 +1102,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1138,19 +1138,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1175,16 +1175,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1210,34 +1210,34 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1263,16 +1263,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1297,16 +1297,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1331,14 +1331,14 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1364,27 +1364,27 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
- / `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1410,29 +1410,29 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control is double-clicked by the mouse.
-
-
-
-
-
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
-
-> [!NOTE]
-> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
+
+> [!NOTE]
+> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1458,30 +1458,30 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
-
-
- `MouseDown`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+ `MouseDown`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1507,26 +1507,26 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1552,32 +1552,32 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
- /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+ /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1603,26 +1603,26 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1648,26 +1648,26 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1693,26 +1693,26 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1738,14 +1738,14 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1771,16 +1771,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1805,16 +1805,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control is redrawn.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1840,16 +1840,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1874,16 +1874,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1909,14 +1909,14 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1942,16 +1942,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1985,14 +1985,14 @@ MsgBox(CStr(LabelArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2017,18 +2017,18 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2054,16 +2054,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2099,14 +2099,14 @@ MsgBox(CStr(LabelArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2142,14 +2142,14 @@ MsgBox(CStr(LabelArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2174,16 +2174,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2208,18 +2208,18 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2244,16 +2244,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2279,16 +2279,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2313,16 +2313,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2347,16 +2347,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2381,46 +2381,46 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2446,46 +2446,46 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2511,16 +2511,16 @@ MsgBox(CStr(LabelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ListBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ListBoxArray.xml
index a88db3a37ef..6ab149262cc 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ListBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ListBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -226,14 +226,14 @@
if is a member of the control array; otherwise, .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -258,16 +258,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -292,14 +292,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -324,18 +324,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -360,16 +360,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -400,16 +400,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -434,16 +434,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -468,14 +468,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -500,14 +500,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -532,16 +532,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -566,16 +566,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -600,16 +600,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -634,16 +634,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -668,14 +668,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -700,14 +700,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -733,16 +733,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -768,16 +768,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -803,16 +803,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -838,16 +838,16 @@
Occurs when a visual aspect of an owner-drawn changes.
- .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -872,16 +872,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -906,34 +906,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -958,16 +958,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -992,16 +992,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1026,16 +1026,16 @@
Occurs when the control is bound to a data value.
- is formatted. Handling this event gives you access to the string to be displayed for this list item, through the `Value` property of the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is formatted. Handling this event gives you access to the string to be displayed for this list item, through the `Value` property of the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1060,16 +1060,16 @@
Occurs when value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1094,16 +1094,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1130,14 +1130,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1166,14 +1166,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1198,16 +1198,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1233,16 +1233,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1272,14 +1272,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1304,16 +1304,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1342,19 +1342,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1379,24 +1379,24 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1422,28 +1422,28 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1469,24 +1469,24 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1512,16 +1512,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1547,34 +1547,34 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1600,16 +1600,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1634,16 +1634,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1668,16 +1668,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs each time an owner-drawn item needs to be drawn and when the sizes of the list items are determined.
- event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1702,14 +1702,14 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1735,29 +1735,29 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
-
-
- `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1783,29 +1783,29 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control is double-clicked by the mouse.
-
-
-
-
-
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
-
-> [!NOTE]
-> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
+
+> [!NOTE]
+> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1831,30 +1831,30 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
-
-
- `MouseDown`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+ `MouseDown`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1879,26 +1879,26 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1924,32 +1924,32 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
- /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+ /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1975,26 +1975,26 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2020,26 +2020,26 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2065,26 +2065,26 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2110,14 +2110,14 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2143,16 +2143,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2177,16 +2177,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2211,16 +2211,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2246,14 +2246,14 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2279,16 +2279,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2322,14 +2322,14 @@ MsgBox(CStr(ListBoxArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2354,18 +2354,18 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2391,16 +2391,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2425,16 +2425,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2459,16 +2459,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2504,14 +2504,14 @@ MsgBox(CStr(ListBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2547,14 +2547,14 @@ MsgBox(CStr(ListBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2579,16 +2579,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2613,18 +2613,18 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2649,16 +2649,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2684,16 +2684,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2718,16 +2718,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2752,46 +2752,46 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2817,46 +2817,46 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2882,16 +2882,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2916,16 +2916,16 @@ MsgBox(CStr(ListBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ListViewArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ListViewArray.xml
index 3e147822fca..6d83e855467 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ListViewArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ListViewArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,18 +144,18 @@
Occurs when the label for an item is edited by the user.
- property of the control must be set to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property of the control must be set to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -180,16 +180,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -214,16 +214,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -248,16 +248,16 @@
Occurs when the user starts editing the label of an item.
- control. If the property of the control is set to `false`, the `BeforeLabelEdit` event is not raised; all user attempts to change item labels are automatically rejected.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ control. If the property of the control is set to `false`, the `BeforeLabelEdit` event is not raised; all user attempts to change item labels are automatically rejected.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -282,16 +282,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -316,16 +316,16 @@
Occurs when the contents of the display area for a in virtual mode has changed and the determines that a new range of items is needed.
- to update the item information held in cache so that it is readily available.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to update the item information held in cache so that it is readily available.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -364,14 +364,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -396,16 +396,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -430,14 +430,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -462,18 +462,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -498,16 +498,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -532,16 +532,16 @@
Occurs when the user clicks a column header within the control.
- control (when the property is set to ). The `ColumnClick` event is typically handled to sort the items in the , using the clicked column as the column to sort by.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ control (when the property is set to ). The `ColumnClick` event is typically handled to sort the items in the , using the clicked column as the column to sort by.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -566,16 +566,16 @@
Occurs when the column header order is changed.
- of the will not change to the value.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the will not change to the value.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -600,14 +600,14 @@
Occurs when the value of the property for a column changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -632,16 +632,16 @@
Occurs when the width of a column is changing.
- property to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -672,16 +672,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -706,16 +706,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -740,14 +740,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -772,14 +772,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -804,16 +804,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -838,16 +838,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -872,14 +872,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -904,14 +904,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -937,16 +937,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -972,16 +972,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1007,16 +1007,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1042,16 +1042,16 @@
Occurs when the details view of a is drawn and the property is set to .
- control using owner drawing. It is raised only when the property is set to `true` and the property is set to `View.Details`. This event can occur for each column header in the control. For more information on owner drawing, see the property reference topic.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ control using owner drawing. It is raised only when the property is set to `true` and the property is set to `View.Details`. This event can occur for each column header in the control. For more information on owner drawing, see the property reference topic.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1076,16 +1076,16 @@
Occurs when a visual aspect of an owner-drawn changes.
- .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1110,16 +1110,16 @@
Occurs when the details view of a is drawn and the property is set to .
- control using owner drawing. It is raised only when the property is set to `true` and the property is set to `View.Details`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ control using owner drawing. It is raised only when the property is set to `true` and the property is set to `View.Details`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1144,16 +1144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1178,34 +1178,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1230,16 +1230,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1264,16 +1264,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1300,14 +1300,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1336,14 +1336,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1368,16 +1368,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1403,16 +1403,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1442,14 +1442,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1474,16 +1474,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1512,19 +1512,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1549,16 +1549,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when an item is activated.
- control. The user can activate an item with either a single-click or double-click, depending on the value of the property, or with the keyboard. From within the event handler for the `ItemActivate` event, you can reference the or properties to access the collection of items selected in the to determine which items are being activated.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ control. The user can activate an item with either a single-click or double-click, depending on the value of the property, or with the keyboard. From within the event handler for the `ItemActivate` event, you can reference the or properties to access the collection of items selected in the to determine which items are being activated.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1583,16 +1583,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the checked state of an item changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1617,14 +1617,14 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the checked state of an item changes.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1649,16 +1649,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the user begins dragging an item.
- method. You can use this event to perform the tasks necessary to drag items into and out of your application's control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ method. You can use this event to perform the tasks necessary to drag items into and out of your application's control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1683,14 +1683,14 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the mouse hovers over an item.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1715,18 +1715,18 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the selection state of an item changes.
- event will occur when the selection state of multiple items changes.
-
- The I`temSelectionChanged` event occurs whether the item state changes from selected to deselected or deselected to selected.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ event will occur when the selection state of multiple items changes.
+
+ The I`temSelectionChanged` event occurs whether the item state changes from selected to deselected or deselected to selected.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1751,24 +1751,24 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1794,28 +1794,28 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by non-character keys; however, the non-character keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1841,24 +1841,24 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1884,16 +1884,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1919,34 +1919,34 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1972,16 +1972,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2006,16 +2006,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2040,14 +2040,14 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2073,29 +2073,29 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
-
-
- `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2121,29 +2121,29 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control is double-clicked by the mouse.
-
-
-
-
-
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
-
-> [!NOTE]
-> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
+
+> [!NOTE]
+> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2169,30 +2169,30 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
-
-
- `MouseDown`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+ `MouseDown`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2218,26 +2218,26 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2263,32 +2263,32 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover`
-
- /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover`
+
+ /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2314,26 +2314,26 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2359,26 +2359,26 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2404,26 +2404,26 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2449,14 +2449,14 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2482,16 +2482,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2516,16 +2516,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2550,16 +2550,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2585,14 +2585,14 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2618,16 +2618,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2661,14 +2661,14 @@ MsgBox(CStr(ListViewArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2693,18 +2693,18 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2730,16 +2730,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the is in virtual mode and requires a .
- when handling this event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ when handling this event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2764,16 +2764,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2798,16 +2798,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the RightToLeftLayout property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2832,16 +2832,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the is in virtual mode and a search is taking place.
- is in virtual mode and the or method is called. When handling this event, you should calculate which item from the list of items supplied by the Items property matches the search criteria and set the `SearchForVirtualItemEventArgs.Index` property to the index of the ListViewItem. If an item is not provided, and FindItemWithText will return a null reference (Nothing in Visual Basic).
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is in virtual mode and the or method is called. When handling this event, you should calculate which item from the list of items supplied by the Items property matches the search criteria and set the `SearchForVirtualItemEventArgs.Index` property to the index of the ListViewItem. If an item is not provided, and FindItemWithText will return a null reference (Nothing in Visual Basic).
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2866,16 +2866,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2911,14 +2911,14 @@ MsgBox(CStr(ListViewArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2954,14 +2954,14 @@ MsgBox(CStr(ListViewArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2986,16 +2986,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3020,18 +3020,18 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3056,16 +3056,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3091,16 +3091,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3125,16 +3125,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3159,46 +3159,46 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3224,46 +3224,46 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3289,16 +3289,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when a is in virtual mode and the selection state of a range of items has changed.
- is not in virtual mode, the event will occur.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is not in virtual mode, the event will occur.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -3324,16 +3324,16 @@ MsgBox(CStr(ListViewArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/LoadResConstants.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/LoadResConstants.xml
index faab5268b1b..67832c6ceb1 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/LoadResConstants.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/LoadResConstants.xml
@@ -22,16 +22,16 @@
Provides constants for compatibility with the Visual Basic 6.0 function.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
My.Resources Object
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/MBindingCollection.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/MBindingCollection.xml
index 24bf7ff1495..b7c861bc7e5 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/MBindingCollection.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/MBindingCollection.xml
@@ -33,13 +33,13 @@
Provides an interface to replace COM-based data binding in an application upgraded from Visual Basic 6.0.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -60,13 +60,13 @@
Initializes an instance of a .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -114,13 +114,13 @@
Adds a to a .
A interface.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -160,13 +160,13 @@
Adds a to a .
A interface.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -194,13 +194,13 @@
Clears the collection of binding objects.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -228,13 +228,13 @@
Gets the total number of bindings in the .
An that contains the count.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -262,13 +262,13 @@
Gets or sets the data member for a .
A that contains the name of the data member.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -302,13 +302,13 @@
Gets or sets the data source for a .
A COM-based object.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -346,14 +346,14 @@
Releases the unmanaged resources that are used by a .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -382,16 +382,16 @@
to release both managed and unmanaged resources; to release only unmanaged resources.
Releases the unmanaged resources that are used by a and optionally releases the managed resources.
- method. `Dispose()` invokes the protected `Dispose(Boolean)` method with the disposing parameter set to `true`. invokes `Dispose` with the disposing parameter set to `false`.
-
- When the disposing parameter is `true`, this method releases all resources held by any managed objects that this control references. This method invokes the `Dispose()` method of each referenced object.
-
+ method. `Dispose()` invokes the protected `Dispose(Boolean)` method with the disposing parameter set to `true`. invokes `Dispose` with the disposing parameter set to `false`.
+
+ When the disposing parameter is `true`, this method releases all resources held by any managed objects that this control references. This method invokes the `Dispose()` method of each referenced object.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -417,13 +417,13 @@
Gets an enumerator for a .
An for the collection.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -455,13 +455,13 @@
Gets the at the specified index.
A interface.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -492,13 +492,13 @@
An that represents the index.
Removes a interface from a .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -523,13 +523,13 @@
Determines whether to save changes in a .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -557,13 +557,13 @@
Gets the current row from the data source of the object and resets the contents of controls bound through the object.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -601,13 +601,13 @@
Gets or sets the for a .
A enumeration.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/MaskedTextBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/MaskedTextBoxArray.xml
index cf7dfe2c2c8..fdd908bac56 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/MaskedTextBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/MaskedTextBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -212,16 +212,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -260,14 +260,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -292,16 +292,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -326,14 +326,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -358,18 +358,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -394,16 +394,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -434,16 +434,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -468,16 +468,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -502,14 +502,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -534,14 +534,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -566,16 +566,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -600,16 +600,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -634,14 +634,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -666,14 +666,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -699,16 +699,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -734,16 +734,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -769,16 +769,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -804,16 +804,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -838,34 +838,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -890,16 +890,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -924,16 +924,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -960,14 +960,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -996,14 +996,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1028,16 +1028,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1063,16 +1063,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1098,16 +1098,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1136,14 +1136,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1168,16 +1168,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1202,16 +1202,16 @@
Occurs after the insert mode has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1240,19 +1240,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1277,24 +1277,24 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1320,28 +1320,28 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1367,24 +1367,24 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1410,16 +1410,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1445,34 +1445,34 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1498,16 +1498,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1532,16 +1532,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1566,16 +1566,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs after the input mask is changed.
- property is changed by either a programmatic modification or user interaction. This event is also raised if the is indirectly changed by a member such as , , , and .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction. This event is also raised if the is indirectly changed by a member such as , , , and .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1600,16 +1600,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the user's input or assigned character does not match the corresponding format element of the input mask.
- property, is interpreted by the masked text provider associated with the control through the property.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property, is interpreted by the masked text provider associated with the control through the property.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1635,16 +1635,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the value of the property has changed.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1669,14 +1669,14 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1702,27 +1702,27 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
- / `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1748,29 +1748,29 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the control is double-clicked by the mouse.
-
-
-
-
-
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1796,26 +1796,26 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
- / `MouseDown` /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / `MouseDown` /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1841,26 +1841,26 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1886,30 +1886,30 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover` / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover` / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1935,26 +1935,26 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1980,26 +1980,26 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2025,26 +2025,26 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2070,14 +2070,14 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2103,16 +2103,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2137,16 +2137,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2172,14 +2172,14 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2205,16 +2205,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2239,16 +2239,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2282,14 +2282,14 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
A .
Not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2314,18 +2314,18 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2351,16 +2351,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2396,14 +2396,14 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2439,14 +2439,14 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2471,16 +2471,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2505,18 +2505,18 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2541,16 +2541,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2576,16 +2576,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2610,16 +2610,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2644,16 +2644,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2678,16 +2678,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2712,16 +2712,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when has finished parsing the current value by using the property.
- control will optionally validate user input against the type defined by its property.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ control will optionally validate user input against the type defined by its property.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2747,46 +2747,46 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2812,46 +2812,46 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2877,16 +2877,16 @@ MsgBox(CStr(MaskedTextBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/MenuItemArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/MenuItemArray.xml
index e436c2c1533..ad6bab9a3e8 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/MenuItemArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/MenuItemArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -158,14 +158,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -190,18 +190,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -226,16 +226,16 @@
Occurs when a visual aspect of an owner-drawn changes.
- .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -262,14 +262,14 @@
Overrides .
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this method is usually not called directly but is instead called by a derived class.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -298,14 +298,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -334,14 +334,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -370,19 +370,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -407,16 +407,16 @@ MsgBox(CStr(MenuItemArray(1).Text))
Occurs each time an owner-drawn needs to be drawn.
- event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -441,16 +441,16 @@ MsgBox(CStr(MenuItemArray(1).Text))
Occurs before a menu item's list of menu items is displayed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -484,14 +484,14 @@ MsgBox(CStr(MenuItemArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -516,16 +516,16 @@ MsgBox(CStr(MenuItemArray(1).Text))
Occurs when the user rests the mouse pointer over a menu item.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -561,14 +561,14 @@ MsgBox(CStr(MenuItemArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -604,14 +604,14 @@ MsgBox(CStr(MenuItemArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/MouseButtonConstants.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/MouseButtonConstants.xml
index 58f8fd9339e..0e33f9d30e8 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/MouseButtonConstants.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/MouseButtonConstants.xml
@@ -22,19 +22,19 @@
Provides constants for compatibility with the shift parameter mask constants in Visual Basic 6.0.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
-
-
-## Examples
-
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
+
+
+## Examples
+
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/OpenFileDialogArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/OpenFileDialogArray.xml
index 80ed40abef1..4bfc2e845cd 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/OpenFileDialogArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/OpenFileDialogArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -158,14 +158,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -190,14 +190,14 @@
Occurs when the user clicks on the or button on an dialog box.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -224,14 +224,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -260,14 +260,14 @@
Gets the index of an in an .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -292,14 +292,14 @@
Occurs when the user clicks the button on an dialog box.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -328,14 +328,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -364,19 +364,19 @@
Gets a specific element of an by index. Read-only.
An at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -410,14 +410,14 @@ MsgBox(CStr(OpenFileDialogArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -453,14 +453,14 @@ MsgBox(CStr(OpenFileDialogArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in an .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -496,14 +496,14 @@ MsgBox(CStr(OpenFileDialogArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/PanelArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/PanelArray.xml
index 4704e44d5ee..dd448b6edf4 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/PanelArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/PanelArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -212,16 +212,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -246,16 +246,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -280,16 +280,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -328,14 +328,14 @@
if is a member of the control array; otherwise, .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -360,16 +360,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -394,14 +394,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -426,18 +426,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -462,16 +462,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -502,16 +502,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -536,16 +536,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -570,14 +570,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -602,14 +602,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -634,16 +634,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -668,16 +668,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -702,14 +702,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -734,14 +734,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -767,16 +767,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -802,16 +802,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -837,16 +837,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -872,16 +872,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -906,34 +906,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -958,16 +958,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -992,16 +992,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1028,14 +1028,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1064,14 +1064,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1096,16 +1096,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1131,16 +1131,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1170,14 +1170,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1202,16 +1202,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1240,19 +1240,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1277,16 +1277,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1312,34 +1312,34 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1365,16 +1365,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1399,16 +1399,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1433,14 +1433,14 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1466,27 +1466,27 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
- / `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1512,29 +1512,29 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control is double-clicked by the mouse.
-
-
-
-
-
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1560,26 +1560,26 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
- / `MouseDown` /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / `MouseDown` /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1605,26 +1605,26 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1650,30 +1650,30 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover` / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover` / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1699,26 +1699,26 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1744,26 +1744,26 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1789,26 +1789,26 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1834,14 +1834,14 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1867,16 +1867,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1901,16 +1901,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control is redrawn.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1936,16 +1936,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1970,16 +1970,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2005,14 +2005,14 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2038,16 +2038,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2081,14 +2081,14 @@ MsgBox(CStr(PanelArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2113,18 +2113,18 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2150,16 +2150,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2184,14 +2184,14 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the user scrolls the control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2227,14 +2227,14 @@ MsgBox(CStr(PanelArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2270,14 +2270,14 @@ MsgBox(CStr(PanelArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2302,16 +2302,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2336,18 +2336,18 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2372,16 +2372,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2407,16 +2407,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2441,16 +2441,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2475,46 +2475,46 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2540,46 +2540,46 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2605,16 +2605,16 @@ MsgBox(CStr(PanelArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/PictureBoxArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/PictureBoxArray.xml
index 7a6ff352cfc..eef5595b6e8 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/PictureBoxArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/PictureBoxArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -212,16 +212,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -246,16 +246,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -294,14 +294,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -326,14 +326,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -358,18 +358,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -394,16 +394,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -434,16 +434,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -468,16 +468,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -502,14 +502,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -534,14 +534,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -566,16 +566,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -600,16 +600,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -634,14 +634,14 @@
Occurs when a control in a is double-clicked.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -666,14 +666,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -699,16 +699,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -734,16 +734,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -769,16 +769,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -804,16 +804,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -840,14 +840,14 @@
Overrides .
The class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this method is usually not called directly but is instead called by a derived class.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -876,14 +876,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -908,16 +908,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -943,16 +943,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -982,14 +982,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1018,19 +1018,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1055,16 +1055,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1090,16 +1090,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the asynchronous image-load operation is completed, been canceled, or raised an exception.
- methods, and is false. If the image-load is canceled by calling the method the property of the will be set to true. If an exception or error occurs during the load process, it will be caught and the `Error` property of the will contain the exception information.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ methods, and is false. If the image-load is canceled by calling the method the property of the will be set to true. If an exception or error occurs during the load process, it will be caught and the `Error` property of the will contain the exception information.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1124,18 +1124,18 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the progress of an asynchronous image-loading operation has changed.
- methods. The progress percentage of the image load is reported with the property of the .
-
- Handle the `LoadProgressChanged` event if you want to reflect the progress of an asynchronous image-loading operation in a or similar control. Use the property of the to update the progress value.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ methods. The progress percentage of the image load is reported with the property of the .
+
+ Handle the `LoadProgressChanged` event if you want to reflect the progress of an asynchronous image-loading operation in a or similar control. Use the property of the to update the progress value.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1160,16 +1160,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1194,16 +1194,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1228,14 +1228,14 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1261,27 +1261,27 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
- / `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
+
+
+ / `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1307,29 +1307,29 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control is double-clicked by the mouse.
-
-
-
-
-
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
-
+
+
+
+
+
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a `DoubleClick` event instead of the second event.
+
> [!NOTE]
-> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+> events are logically higher-level events of a shape. They are often raised by other actions, such as pressing the ENTER key when the shape has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1355,26 +1355,26 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
- / `MouseDown` /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ / `MouseDown` /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1400,26 +1400,26 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1445,30 +1445,30 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover` / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover` / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1494,26 +1494,26 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1539,26 +1539,26 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1584,26 +1584,26 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1629,14 +1629,14 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1662,16 +1662,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1696,16 +1696,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control is redrawn.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1731,16 +1731,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1765,16 +1765,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1800,14 +1800,14 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1833,16 +1833,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1876,14 +1876,14 @@ MsgBox(CStr(PictureBoxArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1908,18 +1908,18 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1956,14 +1956,14 @@ MsgBox(CStr(PictureBoxArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1999,14 +1999,14 @@ MsgBox(CStr(PictureBoxArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2031,16 +2031,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2065,16 +2065,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2099,18 +2099,18 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2135,16 +2135,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2170,46 +2170,46 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2235,46 +2235,46 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
- `Validating`
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validating`
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Validating`
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validating`
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2300,16 +2300,16 @@ MsgBox(CStr(PictureBoxArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/PrintDialogArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/PrintDialogArray.xml
index 91ba28c4954..a0692ef1f5a 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/PrintDialogArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/PrintDialogArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -158,14 +158,14 @@
if is a member of the control array; otherwise .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -192,14 +192,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -228,14 +228,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -260,16 +260,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -299,14 +299,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -335,19 +335,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -381,14 +381,14 @@ MsgBox(CStr(PrintDialogArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -424,14 +424,14 @@ MsgBox(CStr(PrintDialogArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -467,14 +467,14 @@ MsgBox(CStr(PrintDialogArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/ProgressBarArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/ProgressBarArray.xml
index 69bd6202fc5..ff47b172864 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/ProgressBarArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/ProgressBarArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -226,14 +226,14 @@
if is a member of the control array; otherwise, .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -258,14 +258,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -290,18 +290,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -326,16 +326,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -366,16 +366,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -400,16 +400,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -434,14 +434,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -466,14 +466,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -498,16 +498,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -532,16 +532,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -566,14 +566,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -599,16 +599,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -634,16 +634,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -669,16 +669,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -704,16 +704,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -738,16 +738,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -774,14 +774,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -810,14 +810,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -842,16 +842,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -877,16 +877,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -916,14 +916,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -952,19 +952,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -989,16 +989,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1024,16 +1024,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1058,16 +1058,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1092,14 +1092,14 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1125,27 +1125,27 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
- / `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
+
+
+ / `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1171,26 +1171,26 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
- / `MouseDown` /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ / `MouseDown` /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1216,26 +1216,26 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1261,30 +1261,30 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover` / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover` / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1310,26 +1310,26 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1355,26 +1355,26 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1400,26 +1400,26 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1445,14 +1445,14 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1478,16 +1478,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1512,16 +1512,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1546,16 +1546,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1581,14 +1581,14 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1614,16 +1614,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1657,14 +1657,14 @@ MsgBox(CStr(ProgressBarArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1689,18 +1689,18 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1726,16 +1726,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1760,16 +1760,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1805,14 +1805,14 @@ MsgBox(CStr(ProgressBarArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1848,14 +1848,14 @@ MsgBox(CStr(ProgressBarArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1880,16 +1880,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1914,18 +1914,18 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1950,16 +1950,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1985,16 +1985,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2019,46 +2019,46 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2084,46 +2084,46 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the control is validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
- `Validating`
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validating`
-
-
-
- If the property is set to `false`, the and events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Validating`
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validating`
+
+
+
+ If the property is set to `false`, the and events are suppressed.
+
+ If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2149,16 +2149,16 @@ MsgBox(CStr(ProgressBarArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
diff --git a/xml/Microsoft.VisualBasic.Compatibility.VB6/RadioButtonArray.xml b/xml/Microsoft.VisualBasic.Compatibility.VB6/RadioButtonArray.xml
index 13bb406e08a..7f65f7be23a 100644
--- a/xml/Microsoft.VisualBasic.Compatibility.VB6/RadioButtonArray.xml
+++ b/xml/Microsoft.VisualBasic.Compatibility.VB6/RadioButtonArray.xml
@@ -31,14 +31,14 @@
Provides a control array of controls.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -74,14 +74,14 @@
Initializes a new instance of the class.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -112,14 +112,14 @@
The where the control array will be hosted.
Initializes a new instance of the class, specifying its container.
- , you must also call the method to create the initial element in the array.
-
+ , you must also call the method to create the initial element in the array.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -144,16 +144,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -178,16 +178,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -212,16 +212,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -246,16 +246,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -280,16 +280,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -314,16 +314,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -362,14 +362,14 @@
if is a member of the control array; otherwise, .
- control is the base element of the control array from which the other elements were cloned.
-
+ control is the base element of the control array from which the other elements were cloned.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -394,16 +394,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -428,14 +428,14 @@
Occurs when the focus or keyboard user interface (UI) cues change.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -460,16 +460,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -494,18 +494,18 @@
Occurs when a in a is clicked.
- to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
-
- 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ to its event handler. Therefore it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the event. However, the event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.
+
+ 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 events of a control, the `Click` and 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 event, the `Click` event might be raised two times.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -530,16 +530,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -570,16 +570,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -604,16 +604,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -638,14 +638,14 @@
Occurs when a new control is added to the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -670,14 +670,14 @@
Occurs when a control is removed from the .
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -702,16 +702,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -736,16 +736,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -770,14 +770,14 @@
Occurs when a drag-and-drop operation is completed.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -803,16 +803,16 @@
Occurs when an object is dragged into the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -838,16 +838,16 @@
Occurs when an object is dragged out of the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -873,16 +873,16 @@
Occurs when an object is dragged over the control's bounds.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -908,16 +908,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -942,34 +942,34 @@
Occurs when the control is entered.
- or method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
- `Enter`
-
-
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+ `Enter`
+
+
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -994,16 +994,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1028,16 +1028,16 @@
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1064,14 +1064,14 @@
Overrides .
The type of a control in a control array.
- method instead.
-
+ method instead.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1100,14 +1100,14 @@
Gets the index of a in a .
A that represents the index of the specified .
- .
-
+ .
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1132,16 +1132,16 @@
Occurs during a drag operation.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1167,16 +1167,16 @@
Occurs when the user requests help for a control.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1206,14 +1206,14 @@
An .
Overrides .
- method.
-
+ method.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1242,19 +1242,19 @@
Gets a specific element of a by index. Read-only.
A at the specified in the control array.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1279,24 +1279,24 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
-
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1322,28 +1322,28 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when a key is pressed and the control has focus.
-
-
- `KeyPress`
-
-
-
- The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
-
- Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `KeyPress`
+
+
+
+ The `KeyPress` event is not raised by noncharacter keys; however, the noncharacter keys do raise the and events.
+
+ Use the property to sample keystrokes at run time and to consume or modify a subset of common keystrokes.
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1369,24 +1369,24 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when a key is released and the control has focus.
-
-
-
-
- `KeyUp`
-
- To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `KeyUp`
+
+ To handle keyboard events only at the form level and not enable controls to receive keyboard events, set the property in the form's event-handling method to `true`.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1412,16 +1412,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when a control should reposition its child controls.
- and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ and methods. Suspending layout enables you to perform multiple actions on a control without having to perform a layout for each change. For example, if you resize and move a control, each operation would raise a `Layout` event.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1447,34 +1447,34 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the input focus leaves the control.
- or method, focus events occur in the following order:
-
-
-
-
-
- `Leave`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
- `Leave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or method, focus events occur in the following order:
+
+
+
+
+
+ `Leave`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+ `Leave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1500,16 +1500,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1534,16 +1534,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1568,14 +1568,14 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the control loses or gains mouse capture.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1601,29 +1601,29 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the control is clicked by the mouse.
-
-
-
-
- `MouseClick`
-
-
-
- Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
-
-> [!NOTE]
-> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ `MouseClick`
+
+
+
+ Two clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate an event instead of the second `MouseClick` event.
+
+> [!NOTE]
+> events are logically higher-level events of a control. They are often raised by other actions, such as pressing the ENTER key when the control has focus.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1649,26 +1649,26 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is pressed.
-
-
-
-
- / `MouseDown` /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / `MouseDown` /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1694,26 +1694,26 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the mouse pointer enters the control.
-
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1739,30 +1739,30 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the mouse pointer rests on the control.
- property.
-
- The `MouseHover` event is defined and detected in connection with the and properties.
-
- Mouse events occur in the following order:
-
-
-
-
-
- `MouseHover` / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ property.
+
+ The `MouseHover` event is defined and detected in connection with the and properties.
+
+ Mouse events occur in the following order:
+
+
+
+
+
+ `MouseHover` / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1788,26 +1788,26 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the mouse pointer leaves the control.
-
-
-
-
- / /
-
-
-
- `MouseLeave`
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+
+
+ `MouseLeave`
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1833,26 +1833,26 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the mouse pointer is moved over the control.
-
-
- `MouseMove`
-
- / /
-
-
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+ `MouseMove`
+
+ / /
+
+
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1878,26 +1878,26 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the mouse pointer is over the control and a mouse button is released.
-
-
-
-
- / /
-
- `MouseUp`
-
-
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+
+
+
+
+ / /
+
+ `MouseUp`
+
+
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
+> [!NOTE]
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1923,14 +1923,14 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the control is moved.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1956,16 +1956,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -1990,16 +1990,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the control is redrawn.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2025,16 +2025,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the control's property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2059,16 +2059,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when an is providing Help to accessibility applications.
- class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ class to enable users to invoke Help on your accessible object by pressing the F1 key. The gives you complete information in the .
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2094,14 +2094,14 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2127,16 +2127,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the value of the property changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2170,14 +2170,14 @@ MsgBox(CStr(RadioButtonArray(1).Text))
A .
The method is not supported in the class.
- [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2202,18 +2202,18 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the control is resized.
- of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
-
- To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ of the resized control, you can cast the `sender` parameter of the data to a and get its property (or and properties individually).
+
+ To handle custom layouts, use the event instead of the `Resize` event. The event is raised in response to a `Resize` event, but also in response to other changes that affect the layout of the control.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2239,16 +2239,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2284,14 +2284,14 @@ MsgBox(CStr(RadioButtonArray(1).Text))
A that represents the index of the specified .
Sets the index of the initial in a .
- method and specify the `Index`.
-
+ method and specify the `Index`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2327,14 +2327,14 @@ MsgBox(CStr(RadioButtonArray(1).Text))
if is a member of this control array; otherwise, .
- is a member of a different , `ShouldSerializeIndex` returns `false`.
-
+ is a member of a different , `ShouldSerializeIndex` returns `false`.
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2359,16 +2359,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2393,18 +2393,18 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the control style changes.
- flags have been added or changed.
-
- This event is raised if the control style is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ flags have been added or changed.
+
+ This event is raised if the control style is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2429,16 +2429,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the system colors change.
- is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2464,16 +2464,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2498,16 +2498,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2532,16 +2532,16 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the property value changes.
- property is changed by either a programmatic modification or user interaction.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
+ property is changed by either a programmatic modification or user interaction.
+
+ For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
+
> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
+
]]>
@@ -2566,46 +2566,46 @@ MsgBox(CStr(RadioButtonArray(1).Text))
Occurs when the control is finished validating.
- or methods, or by setting the property to the current form, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
- `Validated`
-
-
-
- When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
-
-
-
-
-
-
-
-
-
-
-
- `Validated`
-
- If the property is set to `false`, the and `Validated` events are suppressed.
-
- If the property of the is set to `true` in the event delegate, all events that would usually occur after the event are suppressed.
-
- For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
-
-> [!NOTE]
-> Functions and objects in the 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 .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
-
+ or methods, or by setting the property to the current form, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+
+
+ When you change the focus by using the mouse or by calling the method, focus events occur in the following order:
+
+
+
+
+
+
+
+
+
+
+
+ `Validated`
+
+ If the property is set to `false`, the and `Validated` events are suppressed.
+
+ If the property of the