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