Click or drag to resize

AutoSelectMode Enumeration

Enumeration of the modes for auto selecting text.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public enum AutoSelectMode
Members
  Member nameValueDescription
OnFocus0 Selects the text when the control recieves focus, unless the user clicks at a point in the text with the I beam cursor.
Never1 The text is never automatically selected. When the text of the control is set to a different value, the cursor usually will be at the end of the text input. The last selection of the control is also usually kept in this mode.
Always2 Selects the text when the control recieves focus regardless of whether the user clicked at a point in the text, or the last selection. On macOS, if the user clicks and drags to select some text it will not select all text.
See Also