1 override of BrowsableAttributes
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
69public override AttributeCollection BrowsableAttributes {
3 writes to BrowsableAttributes
System.Windows.Forms (3)
winforms\Managed\System\WinForms\PropertyGrid.cs (2)
454peMain.BrowsableAttributes = BrowsableAttributes; 4729peMain.BrowsableAttributes = BrowsableAttributes;
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
256parentPE.BrowsableAttributes = value;
5 references to BrowsableAttributes
System.Windows.Forms (5)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (3)
251return parentPE.BrowsableAttributes; 1531Attribute[] attributes = new Attribute[this.BrowsableAttributes.Count]; 1532this.BrowsableAttributes.CopyTo(attributes, 0);
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (2)
143Attribute[] attrs = new Attribute[parentEntry.BrowsableAttributes.Count]; 144parentEntry.BrowsableAttributes.CopyTo(attrs, 0);