'Declaration Public Property AutoWordSelection As Boolean
'Usage Dim instance As GcTextBox Dim value As Boolean instance.AutoWordSelection = value value = instance.AutoWordSelection
public bool AutoWordSelection {get; set;}
'Declaration Public Property AutoWordSelection As Boolean
'Usage Dim instance As GcTextBox Dim value As Boolean instance.AutoWordSelection = value value = instance.AutoWordSelection
public bool AutoWordSelection {get; set;}
When AutoWordSelection is enabled, each time that part of a word is selected by the user dragging over part of a word using the mouse, the selection is automatically expanded to include that entire word. The user can override automatic selection of an entire word by momentarily reversing the direction in which the mouse pointer is being dragged as the selection is made. This action undoes the automatic selection of the entire word, and enables the user to precisely select part or all of the word.
When AutoWordSelection is disabled, a selection is not automatically expanded to include entire words; in this case, precise selections are always determined manually.
Auto selection does not affect the first word that the user drags across. It is only after this first word boundary is crossed that auto selection takes effect.