You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* MouseWheel properties are equivalent
This was never clearly documented. We supported IntelliMouse drivers on Windows 9x systems. `NativeMouseWheelSupport` told you if the OS natively had a mouse wheel installed. `MouseWheelSupport` told you if the OS had a mouse wheel installed OR an IntelliMouse driver was installed to give said support. The driver sent mouse wheel messages on 9x systems, but the OS didn't natively understand what that was.
Also removing the OS comments as they can be confusing and we're long long past those days. :)
* Fix name
Copy file name to clipboardExpand all lines: xml/System.Windows.Forms/SystemInformation.xml
+12-18Lines changed: 12 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -3197,7 +3197,6 @@
3197
3197
3198
3198
## Remarks
3199
3199
The <xref:System.Windows.Forms.SystemInformation.MousePresent%2A> property indicates whether a pointing device is present or installed on the system. This is usually the case, so <xref:System.Windows.Forms.SystemInformation.MousePresent%2A> almost always returns `true`.
3200
-
3201
3200
3202
3201
3203
3202
## Examples
@@ -3238,10 +3237,6 @@
3238
3237
3239
3238
## Remarks
3240
3239
The mouse speed determines how far the pointer will move based on the distance the mouse moves. The value of this property ranges between 1 (slowest) and 20 (fastest). A value of 10 is the default. The value can be set by an end user using the mouse control panel application or by an application using the `SystemParametersInfo` function of the Platform SDK.
3241
-
3242
-
> [!NOTE]
3243
-
> This property is supported only on Windows 98, Windows Millennium Edition, Windows 2000, Windows XP, and the Windows Server 2003 family.
3244
-
3245
3240
3246
3241
3247
3242
## Examples
@@ -3281,12 +3276,11 @@
3281
3276
<formattype="text/markdown"><![CDATA[
3282
3277
3283
3278
## Remarks
3284
-
The <xref:System.Windows.Forms.SystemInformation.MouseWheelPresent%2A> property indicates whether the system recognizes a mouse wheel on the current mouse.
3285
-
3279
+
The <xref:System.Windows.Forms.SystemInformation.MouseWheelPresent%2A> property indicates whether the system recognizes a mouse wheel on an installed mouse.
3280
+
3286
3281
> [!NOTE]
3287
-
> This property is supported only on Windows NT 4.0 or later, Windows 98, Windows Millennium Edition, Windows 2000, Windows XP, and the Windows Server 2003 family.
3288
-
3289
-
3282
+
> This property is equivalent to <xref:System.Windows.Forms.SystemInformation.NativeMouseWheelSupport%2A>.
3283
+
3290
3284
3291
3285
## Examples
3292
3286
The following code example lists all properties of the <xref:System.Windows.Forms.SystemInformation> class in a <xref:System.Windows.Forms.ListBox> and displays the current value of the property in a <xref:System.Windows.Forms.TextBox> when a list item selected.
@@ -3405,19 +3399,19 @@
3405
3399
<ReturnType>System.Boolean</ReturnType>
3406
3400
</ReturnValue>
3407
3401
<Docs>
3408
-
<summary>Gets a value indicating whether the operating system natively supports a mouse wheel.</summary>
3402
+
<summary>Gets a value indicating whether a mouse with a mouse wheel is installed.</summary>
3409
3403
<value>
3410
-
<seelangword="true" /> if the operating system natively supports a mouse wheel; otherwise, <seelangword="false" />.</value>
3404
+
<seelangword="true" /> if a mouse with a mouse wheel is installed; otherwise, <seelangword="false" />.</value>
3411
3405
<remarks>
3412
3406
<formattype="text/markdown"><![CDATA[
3413
3407
3414
3408
## Remarks
3415
-
Mouse wheel operations that occur through a <xref:System.Windows.Forms.Control> object work even if the operating system does not natively support the wheel.
3416
-
3409
+
The <xref:System.Windows.Forms.SystemInformation.NativeMouseWheelSupport%2A> property indicates whether the system recognizes a mouse wheel on an installed mouse.
3410
+
3417
3411
> [!NOTE]
3418
-
> This property is supported only on Windows NT 4.0 or later, Windows 98, Windows Millennium Edition, Windows 2000, Windows XP, and the Windows Server 2003 family.
3419
-
3420
-
3412
+
> This property is equivalent to <xref:System.Windows.Forms.SystemInformation.MouseWheelPresent%2A>.
3413
+
3414
+
3421
3415
3422
3416
## Examples
3423
3417
The following code example lists all properties of the <xref:System.Windows.Forms.SystemInformation> class in a <xref:System.Windows.Forms.ListBox> and displays the current value of the property in a <xref:System.Windows.Forms.TextBox> when a list item selected.
0 commit comments