16 references to EntryFlags
System.Windows.Forms (16)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\ArrayElementGridEntry.cs (1)
14SetFlag(Flags.RenderReadOnly, parent.EntryFlags.HasFlag(Flags.RenderReadOnly) || parent.ForceReadOnly);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
116bool bold = EntryFlags.HasFlag(Flags.LabelBold);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (12)
258internal virtual bool Enumerable => EntryFlags.HasFlag(Flags.StandardValuesSupported); 577return EntryFlags.HasFlag(Flags.CustomPaint); 594public bool IsTextEditable => IsValueEditable && EntryFlags.HasFlag(Flags.TextEditable); 629public virtual bool NeedsDropDownButton => EntryFlags.HasFlag(Flags.DropDownEditable); 635=> EntryFlags.HasFlag(Flags.ModalEditable) && (IsValueEditable || EntryFlags.HasFlag(Flags.ReadOnlyEditable)); 750public bool ShouldRenderPassword => EntryFlags.HasFlag(Flags.RenderPassword); 754|| EntryFlags.HasFlag(Flags.RenderReadOnly) 755|| (!IsValueEditable && !EntryFlags.HasFlag(Flags.ReadOnlyEditable)); 1475protected bool GetFlagSet(Flags flags) => (flags & EntryFlags) != 0; 1528bool bold = EntryFlags.HasFlag(Flags.LabelBold); 2038=> _flags = (EntryFlags & ~flag) | (value ? flag : 0);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (2)
119if (_mergedDescriptor.PropertyType.IsValueType || EntryFlags.HasFlag(Flags.Immutable)) 153=> _mergedDescriptor.PropertyType.IsValueType || EntryFlags.HasFlag(Flags.Immutable)