15 references to Right
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (2)
10525return LeftRightAlignment.Right; 10527else if (align == LeftRightAlignment.Right)
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (2)
478get => (_style & PInvoke.DTS_RIGHTALIGN) != 0 ? LeftRightAlignment.Right : LeftRightAlignment.Left; 483SetStyleBit(value == LeftRightAlignment.Right, PInvoke.DTS_RIGHTALIGN);
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (2)
23private const LeftRightAlignment DefaultUpDownAlign = LeftRightAlignment.Right; 422[DefaultValue(LeftRightAlignment.Right)]
System\Windows\Forms\SystemInformation.cs (1)
619? LeftRightAlignment.Left : LeftRightAlignment.Right;
System.Windows.Forms.Tests (8)
System\Windows\Forms\ControlTests.Methods.cs (2)
6948yield return new object[] { RightToLeft.Yes, LeftRightAlignment.Left, LeftRightAlignment.Right }; 6949yield return new object[] { RightToLeft.Yes, LeftRightAlignment.Right, LeftRightAlignment.Left };
System\Windows\Forms\DateTimePickerTests.cs (2)
358_dateTimePicker.DropDownAlign = LeftRightAlignment.Right; 359_dateTimePicker.DropDownAlign.Should().Be(LeftRightAlignment.Right);
System\Windows\Forms\DomainUpDownTests.cs (1)
143_sub.UpDownAlign.Should().Be(LeftRightAlignment.Right);
System\Windows\Forms\UpDownBaseTests.cs (3)
126Assert.Equal(LeftRightAlignment.Right, control.UpDownAlign); 1434yield return new object[] { borderStyle, rightToLeft, LeftRightAlignment.Right }; 1465yield return new object[] { borderStyle, rightToLeft, LeftRightAlignment.Right, 0 };