

| Type | Description | |||
| Boolean | A boolean expression that specifies whether the user can magnifies the zoom by rotating the mouse wheel. |
For instance, the following sample zooms the view when the user presses the + or - keys from the numeric pad:
Private Sub Texture1_KeyDown(KeyCode As Integer, Shift As Integer)
If (KeyCode = vbKeyAdd) Then
Texture1.Zoom = Texture1.Zoom - 0.01
Else
If (KeyCode = vbKeySubtract) Then
Texture1.Zoom = Texture1.Zoom + 0.01
End If
End If
End Sub