10 references to s_dockModeSection
System.Windows.Forms (10)
System\Windows\Forms\Layout\CommonProperties.cs (10)
42
private static readonly BitVector32.Section s_autoSizeSection = BitVector32.CreateSection(0x01,
s_dockModeSection
);
439
bool result = (state[s_dockAndAnchorNeedsLayoutSection] != 0) && (state[
s_dockModeSection
] == (int)DockAnchorMode.Anchor);
456
bool result = state[
s_dockModeSection
] == (int)DockAnchorMode.Dock && element.ParticipatesInLayout;
536
DockAnchorMode mode = (DockAnchorMode)state[
s_dockModeSection
];
558
bool result = (state[s_autoSizeSection] != 0) && (state[
s_dockModeSection
] == (int)DockAnchorMode.Anchor);
572
DockAnchorMode mode = (DockAnchorMode)state[
s_dockModeSection
];
595
state[
s_dockModeSection
] = (int)DockAnchorMode.Anchor;
599
Debug.Assert(GetLayoutState(element)[
s_dockModeSection
] == (int)DockAnchorMode.Anchor,
614
state[
s_dockModeSection
] = (int)(value == DockStyle.None ? DockAnchorMode.Anchor : DockAnchorMode.Dock);
619
Debug.Assert((GetLayoutState(element)[
s_dockModeSection
] == (int)DockAnchorMode.Dock)