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