3 writes to tabClassNames
System (3)
compmod\system\componentmodel\design\PropertyTabAttribute.cs (3)
35
tabClassNames
= new string[0];
80
this.
tabClassNames
= new string[]{ tabClassName};
217
this.
tabClassNames
= (string[])tabClassNames.Clone();
10 references to tabClassNames
System (10)
compmod\system\componentmodel\design\PropertyTabAttribute.cs (10)
92
if (tabClasses == null &&
tabClassNames
!= null) {
93
tabClasses = new Type[
tabClassNames
.Length];
94
for (int i=0; i<
tabClassNames
.Length; i++) {
96
int commaIndex =
tabClassNames
[i].IndexOf(',');
101
className =
tabClassNames
[i].Substring(0, commaIndex).Trim();
102
assemblyName =
tabClassNames
[i].Substring(commaIndex + 1).Trim();
105
className =
tabClassNames
[i];
132
if (
tabClassNames
!= null) {
133
return (string[])
tabClassNames
.Clone();
220
else if (this.tabClasses == null && this.
tabClassNames
== null) {