5 references to ES_AUTOHSCROLL
System.Windows.Forms (5)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (1)
54
public override bool IsScrollable => ((int)GetWindowStyle(_owningChildEdit) & PInvoke.
ES_AUTOHSCROLL
) != 0;
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (1)
75
return ((int)GetWindowStyle(_owningChildEdit) & PInvoke.
ES_AUTOHSCROLL
) != 0;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (2)
407
cp.Style |= PInvoke.
ES_AUTOHSCROLL
| PInvoke.ES_AUTOVSCROLL;
436
cp.Style &= ~PInvoke.
ES_AUTOHSCROLL
;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (1)
229
return ((int)GetWindowStyle(Owner) & PInvoke.
ES_AUTOHSCROLL
) != 0;