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)
430&& xGetDock(element) == DefaultDock 448|| (GetAutoSize(element) != DefaultAutoSize && xGetDock(element) == DockStyle.None)) == result, 463Debug.Assert(((xGetDock(element) != DockStyle.None) && element.ParticipatesInLayout) == result, 564Debug.Assert(result == (GetAutoSize(element) && xGetDock(element) == DockStyle.None), 613Debug.Assert(value != xGetDock(element), "PERF: Caller should guard against setting Dock to original value."); 623Debug.Assert(xGetDock(element) == value, "Error detected setting Dock.");
System\Windows\Forms\Layout\DefaultLayout.cs (1)
931public static DockStyle GetDock(IArrangedElement element) => CommonProperties.xGetDock(element);