12 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;
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)
735Assert.NotEqual(0, ((int)actual & PInvoke.ES_AUTOHSCROLL));
System\Windows\Forms\TextBoxBase.TextBoxBaseUiaTextProviderTests.cs (1)
597Assert.NotEqual(0, ((int)actual & PInvoke.ES_AUTOHSCROLL));