4 writes to viewTabScopes
System.Windows.Forms (4)
winforms\Managed\System\WinForms\PropertyGrid.cs (4)
1917viewTabScopes = newTabScopes; 4061viewTabScopes = newTabScopes; 4117viewTabScopes = newTabScopes; 4152viewTabScopes = newTabScopes;
23 references to viewTabScopes
System.Windows.Forms (23)
winforms\Managed\System\WinForms\PropertyGrid.cs (23)
1913PropertyTabScope[] newTabScopes = new PropertyTabScope[viewTabScopes.Length + 1]; 1914Array.Copy(viewTabScopes, 0, newTabScopes, 0, tabIndex); 1915Array.Copy(viewTabScopes, tabIndex, newTabScopes, tabIndex + 1, viewTabScopes.Length - tabIndex); 2394Debug.Assert(viewTabs.Length == viewTabScopes.Length && viewTabScopes.Length == viewTabButtons.Length,"Uh oh, tab arrays aren't all the same length! tabs=" + viewTabs.Length.ToString(CultureInfo.InvariantCulture) + ", scopes=" + viewTabScopes.Length.ToString(CultureInfo.InvariantCulture) + ", buttons=" + viewTabButtons.Length.ToString(CultureInfo.InvariantCulture)); 4016if (killTab && viewTabScopes[tabIndex] > PropertyTabScope.Global) { 4036if (viewTabButtons == null || viewTabs == null || viewTabScopes == null) { 4043if (viewTabScopes[i] >= classification) { 4058PropertyTabScope[] newTabScopes = new PropertyTabScope[viewTabScopes.Length - 1]; 4059Array.Copy(viewTabScopes, 0, newTabScopes, 0, i); 4060Array.Copy(viewTabScopes, i + 1, newTabScopes, i, viewTabScopes.Length - i - 1); 4089if (viewTabScopes[tabIndex] == PropertyTabScope.Static) { 4114PropertyTabScope[] newTabScopes = new PropertyTabScope[viewTabScopes.Length - 1]; 4115Array.Copy(viewTabScopes, 0, newTabScopes, 0, tabIndex); 4116Array.Copy(viewTabScopes, tabIndex + 1, newTabScopes, tabIndex, viewTabScopes.Length - tabIndex - 1); 4149PropertyTabScope[] newTabScopes = new PropertyTabScope[viewTabScopes.Length - 1]; 4150Array.Copy(viewTabScopes, 0, newTabScopes, 0, tabIndex); 4151Array.Copy(viewTabScopes, tabIndex + 1, newTabScopes, tabIndex, viewTabScopes.Length - tabIndex - 1);