11 references to Categorized
System.Windows.Forms (11)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (6)
240
PropertySort = PropertySort.
Categorized
| PropertySort.Alphabetical;
883
if ((value & PropertySort.
Categorized
) != 0)
1213
internal bool SortedByCategories => (PropertySort & PropertySort.
Categorized
) != 0;
2330
PropertySort = PropertySort.
Categorized
| PropertySort.Alphabetical;
2340
: PropertySort.
Categorized
| PropertySort.Alphabetical;
3124
_propertySortValue = PropertySort.Alphabetical | PropertySort.
Categorized
;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (4)
219
if (((_propertySort &= PropertySort.
Categorized
) != 0) != sortByCategories)
223
_propertySort |= PropertySort.
Categorized
;
227
_propertySort &= ~PropertySort.
Categorized
;
243
if (Children.Count == 0 || (_propertySort & PropertySort.
Categorized
) == 0)
System\Windows\Forms\Controls\PropertyGrid\PropertySort.cs (1)
33
CategorizedAlphabetical = Alphabetical |
Categorized
,