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
);
444
bool result = (state[s_dockAndAnchorNeedsLayoutSection] != 0) && (state[
s_dockModeSection
] == (int)DockAnchorMode.Anchor);
461
bool result = state[
s_dockModeSection
] == (int)DockAnchorMode.Dock && element.ParticipatesInLayout;
541
DockAnchorMode mode = (DockAnchorMode)state[
s_dockModeSection
];
563
bool result = (state[s_autoSizeSection] != 0) && (state[
s_dockModeSection
] == (int)DockAnchorMode.Anchor);
577
DockAnchorMode mode = (DockAnchorMode)state[
s_dockModeSection
];
600
state[
s_dockModeSection
] = (int)DockAnchorMode.Anchor;
604
Debug.Assert(GetLayoutState(element)[
s_dockModeSection
] == (int)DockAnchorMode.Anchor,
619
state[
s_dockModeSection
] = (int)(value == DockStyle.None ? DockAnchorMode.Anchor : DockAnchorMode.Dock);
624
Debug.Assert((GetLayoutState(element)[
s_dockModeSection
] == (int)DockAnchorMode.Dock)