26 references to LeftRightAlignment
System.Windows.Forms (26)
_generated\1\Validation.cs (2)
271public static void Validate(System.Windows.Forms.LeftRightAlignment enumToValidate, string parameterName = "value") 275ReportEnumValidationError(parameterName, intValue, typeof(System.Windows.Forms.LeftRightAlignment));
System\Windows\Forms\Control.cs (8)
10625protected LeftRightAlignment RtlTranslateAlignment(LeftRightAlignment align) 10655protected LeftRightAlignment RtlTranslateLeftRight(LeftRightAlignment align) 10659if (align == LeftRightAlignment.Left) 10661return LeftRightAlignment.Right; 10663else if (align == LeftRightAlignment.Right) 10665return LeftRightAlignment.Left;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (5)
472[DefaultValue(LeftRightAlignment.Left)] 476public LeftRightAlignment DropDownAlign 478get => (_style & PInvoke.DTS_RIGHTALIGN) != 0 ? LeftRightAlignment.Right : LeftRightAlignment.Left; 483SetStyleBit(value == LeftRightAlignment.Right, PInvoke.DTS_RIGHTALIGN);
System\Windows\Forms\Controls\Unsupported\ContextMenu\ContextMenu.cs (1)
59public void Show(Control control, Point pos, LeftRightAlignment alignment) { }
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (7)
23private const LeftRightAlignment DefaultUpDownAlign = LeftRightAlignment.Right; 30private LeftRightAlignment _upDownAlign = DefaultUpDownAlign; 420[DefaultValue(LeftRightAlignment.Right)] 422public LeftRightAlignment UpDownAlign 868LeftRightAlignment updownAlign = UpDownAlign; 872if (updownAlign == LeftRightAlignment.Left)
System\Windows\Forms\SystemInformation.cs (3)
617public static LeftRightAlignment PopupMenuAlignment 619? LeftRightAlignment.Left : LeftRightAlignment.Right;