10 references to _dockModeSection
System.Windows.Forms (10)
winforms\Managed\System\WinForms\Layout\CommonProperties.cs (10)
59
private static readonly BitVector32.Section _autoSizeSection = BitVector32.CreateSection(0x01,
_dockModeSection
);
404
bool result = (state[_dockAndAnchorNeedsLayoutSection] != 0) && (state[
_dockModeSection
] == (int) DockAnchorMode.Anchor);
419
bool result = state[
_dockModeSection
] == (int) DockAnchorMode.Dock && element.ParticipatesInLayout;
491
DockAnchorMode mode = (DockAnchorMode) state[
_dockModeSection
];
509
bool result = (state[_autoSizeSection] != 0) && (state[
_dockModeSection
] == (int) DockAnchorMode.Anchor);
522
DockAnchorMode mode = (DockAnchorMode) state[
_dockModeSection
];
546
state[
_dockModeSection
] = (int) DockAnchorMode.Anchor;
551
Debug.Assert(GetLayoutState(element)[
_dockModeSection
] == (int) DockAnchorMode.Anchor,
565
state[
_dockModeSection
] = (int) (value == DockStyle.None ? DockAnchorMode.Anchor : DockAnchorMode.Dock);
570
Debug.Assert((GetLayoutState(element)[
_dockModeSection
] == (int) DockAnchorMode.Dock)