4 writes to viewTabScopes
System.Windows.Forms (4)
winforms\Managed\System\WinForms\PropertyGrid.cs (4)
1917
viewTabScopes
= newTabScopes;
4061
viewTabScopes
= newTabScopes;
4117
viewTabScopes
= newTabScopes;
4152
viewTabScopes
= newTabScopes;
23 references to viewTabScopes
System.Windows.Forms (23)
winforms\Managed\System\WinForms\PropertyGrid.cs (23)
1913
PropertyTabScope[] newTabScopes = new PropertyTabScope[
viewTabScopes
.Length + 1];
1914
Array.Copy(
viewTabScopes
, 0, newTabScopes, 0, tabIndex);
1915
Array.Copy(
viewTabScopes
, tabIndex, newTabScopes, tabIndex + 1,
viewTabScopes
.Length - tabIndex);
2394
Debug.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));
4016
if (killTab &&
viewTabScopes
[tabIndex] > PropertyTabScope.Global) {
4036
if (viewTabButtons == null || viewTabs == null ||
viewTabScopes
== null) {
4043
if (
viewTabScopes
[i] >= classification) {
4058
PropertyTabScope[] newTabScopes = new PropertyTabScope[
viewTabScopes
.Length - 1];
4059
Array.Copy(
viewTabScopes
, 0, newTabScopes, 0, i);
4060
Array.Copy(
viewTabScopes
, i + 1, newTabScopes, i,
viewTabScopes
.Length - i - 1);
4089
if (
viewTabScopes
[tabIndex] == PropertyTabScope.Static) {
4114
PropertyTabScope[] newTabScopes = new PropertyTabScope[
viewTabScopes
.Length - 1];
4115
Array.Copy(
viewTabScopes
, 0, newTabScopes, 0, tabIndex);
4116
Array.Copy(
viewTabScopes
, tabIndex + 1, newTabScopes, tabIndex,
viewTabScopes
.Length - tabIndex - 1);
4149
PropertyTabScope[] newTabScopes = new PropertyTabScope[
viewTabScopes
.Length - 1];
4150
Array.Copy(
viewTabScopes
, 0, newTabScopes, 0, tabIndex);
4151
Array.Copy(
viewTabScopes
, tabIndex + 1, newTabScopes, tabIndex,
viewTabScopes
.Length - tabIndex - 1);