Select a product
- Select a category.
Select shapes partially within area
If you select shapes by using a selection net(dragging a box around shapes on the drawing page), you can change the selection settings to also include shapes that are partially within the selection net.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Microsoft Visio 2016 |
| Category | Microsoft Visio 2016 › Visio Options › Advanced › Editing Options |
| Applies to | User Configuration |
| Supported on | Windows7 |
| Registry Key | [HKCU]softwarepoliciesmicrosoftoffice16.0visioapplication |
| Value Name | areaselection |
| Type | REG_SZ |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0visioapplication]
"areaselection"="1"
; Disable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0visioapplication]
"areaselection"="0"PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0visioapplication" -Name "areaselection" -Value "1" -Type String
# Disable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0visioapplication" -Name "areaselection" -Value "0" -Type String