DekGenius.com
[ Team LiB ] Previous Section Next Section

AccessibleSelectionserializable, flag

System.Windows.Forms (system.windows.forms.dll)enum

Users can select items in various ways. This enumeration lists the predefined selection methods understood by the accessibility framework. It is used to notify accessibility clients that selections are taking place.

public enum AccessibleSelection {
   None = 0x00000000,
   TakeFocus = 0x00000001,
   TakeSelection = 0x00000002,
   ExtendSelection = 0x00000004,
   AddSelection = 0x00000008,
   RemoveSelection = 0x00000010
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparabl, System.IFormattable, System.IConvertible) AccessibleSelection

Passed To

AccessibleObject.Select()

    [ Team LiB ] Previous Section Next Section