12 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;
System.Windows.Forms.Primitives.Tests (5)
System\Windows\Forms\Automation\UiaTextProviderTests.cs (3)
20
| (WINDOW_STYLE)(PInvoke.ES_MULTILINE | PInvoke.ES_LEFT | PInvoke.
ES_AUTOHSCROLL
| PInvoke.ES_AUTOVSCROLL));
34
| (WINDOW_STYLE)(PInvoke.ES_LEFT | PInvoke.
ES_AUTOHSCROLL
| PInvoke.ES_AUTOVSCROLL));
47
| (WINDOW_STYLE)(PInvoke.ES_MULTILINE | PInvoke.ES_LEFT | PInvoke.
ES_AUTOHSCROLL
| PInvoke.ES_AUTOVSCROLL));
System\Windows\Forms\Automation\UiaTextRangeTests.cs (2)
1134
[InlineData((PInvoke.ES_UPPERCASE | PInvoke.ES_LEFT | PInvoke.ES_MULTILINE | PInvoke.ES_READONLY | PInvoke.
ES_AUTOHSCROLL
), (int)CapStyle.AllCap)]
1135
[InlineData((PInvoke.ES_LOWERCASE | PInvoke.ES_LEFT | PInvoke.ES_MULTILINE | PInvoke.ES_READONLY | PInvoke.
ES_AUTOHSCROLL
), (int)CapStyle.None)]
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComboBox.ComboBoxUiaTextProviderTests.cs (1)
735
Assert.NotEqual(0, ((int)actual & PInvoke.
ES_AUTOHSCROLL
));
System\Windows\Forms\TextBoxBase.TextBoxBaseUiaTextProviderTests.cs (1)
597
Assert.NotEqual(0, ((int)actual & PInvoke.
ES_AUTOHSCROLL
));