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