Table of Contents

Enum SelectOptions

The possible operations when clicking on a selectable object.

Namespace: HP.LFT.SDK.UIAPro
Assembly: HP.LFT.SDK.dll
Syntax
[Flags]
public enum SelectOptions

Fields

Name Description
AddSelection

Adds the object to the current selection; possible result is a noncontiguous selection. Unless it is combined with TakeFocus, this flag does not change the focus or the selection anchor. The AddSelection | TakeFocus combination is equivalent to adding an item to a selection manually by holding down the CTRL key and clicking an unselected object in Windows Explorer. This flag is not combined with RemoveSelection or TakeSelection.

ExtendSelection

Alters the selection so that all objects between the selection anchor and this object take on the anchor object's selection state. If the anchor object is not selected, the objects are removed from the selection. If the anchor object is selected, the selection is extended to include this object and all the objects in between. Set the selection state by combining this flag with AddSelection or RemoveSelection. Unless it is combined with TakeFocus, this flag does not change the focus or the selection anchor. The ExtendSelection | TakeFocus combination is equivalent to adding an item to a selection manually by holding down the SHIFT key and clicking an unselected object in Windows Explorer. This flag is not combined with TakeSelection.

RemoveSelection

Removes the object from the current selection; possible result is a noncontiguous selection. Unless it is combined with TakeFocus, this flag does not change the focus or the selection anchor. The RemoveSelection | TakeFocus combination is equivalent to removing an item from a selection manually, by holding down the CTRL key while clicking a selected object in Windows Explorer. This flag is not combined with AddSelection or TakeSelection.

TakeFocus

Sets the focus to the object and makes it the selection anchor. Used by itself, this flag does not alter the selection. The effect is similar to moving the focus manually by pressing an ARROW key while holding down the CTRL key in Windows Explorer or in any multiple-selection list box.

TakeSelection

Selects the object and removes the selection from all other objects in the container. Unless it is combined with TakeFocus, this flag does not change the focus or the selection anchor. The TakeSelection | TakeFocus combination is equivalent to single - clicking an item in Windows Explorer.