Indicates flags used to specify a type of selection to apply.
Namespace:
ShellBoost.Core.WindowsShell
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum SVSIF
Members
| Member name | Value | Description |
---|
| SVSI_DESELECT | 0 |
Deselect the item.
|
| SVSI_SELECT | 1 |
Select the item.
|
| SVSI_EDIT | 3 |
Put the name of the item into rename mode. This value includes SVSI_SELECT.
|
| SVSI_DESELECTOTHERS | 4 |
Deselect all but the selected item. If the item parameter is null, deselect all items.
|
| SVSI_ENSUREVISIBLE | 8 |
in the case of a folder that cannot display all of its contents on one screen, display the portion that contains the selected item.
|
| SVSI_FOCUSED | 16 |
Give the selected item the focus when multiple items are selected, placing the item first in any list of the collection returned by a method.
|
| SVSI_TRANSLATEPT | 32 |
Convert the input point from screen coordinates to the list-view client coordinates.
|
| SVSI_SELECTIONMARK | 64 |
Mark the item so that it can be queried using FolderView GetSelectionMarkedItem.
|
| SVSI_POSITIONITEM | 128 |
Allows the window's default view to position the item. In most cases, this will place the item in the first available position. However, if the call comes during the processing of a mouse-positioned context menu, the position of the context menu is used to position the item.
|
| SVSI_CHECK | 256 |
The item should be checked. This flag is used with items in views where the checked mode is supported.
|
| SVSI_CHECK2 | 512 |
The second check state when the view is in tri-check mode, in which there are three values for the checked state.
|
| SVSI_KEYBOARDSELECT | 1025 |
Selects the item and marks it as selected by the keyboard. This value includes SVSI_SELECT.
|
| SVSI_NOTAKEFOCUS | 1073741824 |
An operation to select or focus an item should not also set focus on the view itself.
|
| SVSI_NOSTATECHANGE | -2147483648 |
An operation to edit or position an item should not affect the item's focus or selected state.
|
See Also