27 references to LeftRightAlignment
System.Windows.Forms (27)
_generated\1\Validation.cs (2)
279public static void Validate(System.Windows.Forms.LeftRightAlignment enumToValidate, string parameterName = "value") 283ReportEnumValidationError(parameterName, intValue, typeof(System.Windows.Forms.LeftRightAlignment));
System\Windows\Forms\Control.cs (8)
11354protected LeftRightAlignment RtlTranslateAlignment(LeftRightAlignment align) 11384protected LeftRightAlignment RtlTranslateLeftRight(LeftRightAlignment align) 11388if (align == LeftRightAlignment.Left) 11390return LeftRightAlignment.Right; 11392else if (align == LeftRightAlignment.Right) 11394return 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 (8)
33private const LeftRightAlignment DefaultUpDownAlign = LeftRightAlignment.Right; 40private LeftRightAlignment _upDownAlign = DefaultUpDownAlign; 461[DefaultValue(LeftRightAlignment.Right)] 463public LeftRightAlignment UpDownAlign 971LeftRightAlignment updownAlign = UpDownAlign; 975if (updownAlign == LeftRightAlignment.Left) 1055if (RtlTranslateLeftRight(UpDownAlign) == LeftRightAlignment.Left)
System\Windows\Forms\SystemInformation.cs (3)
617public static LeftRightAlignment PopupMenuAlignment 619? LeftRightAlignment.Left : LeftRightAlignment.Right;