8 references to xGetDock
System.Windows.Forms (8)
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
628return CommonProperties.xGetDock(this);
System\Windows\Forms\Layout\CommonProperties.cs (6)
425&& xGetDock(element) == DefaultDock 443|| (GetAutoSize(element) != DefaultAutoSize && xGetDock(element) == DockStyle.None)) == result, 458Debug.Assert(((xGetDock(element) != DockStyle.None) && element.ParticipatesInLayout) == result, 559Debug.Assert(result == (GetAutoSize(element) && xGetDock(element) == DockStyle.None), 608Debug.Assert(value != xGetDock(element), "PERF: Caller should guard against setting Dock to original value."); 618Debug.Assert(xGetDock(element) == value, "Error detected setting Dock.");
System\Windows\Forms\Layout\DefaultLayout.cs (1)
931public static DockStyle GetDock(IArrangedElement element) => CommonProperties.xGetDock(element);