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)
264internal virtual bool Enumerable => EntryFlags.HasFlag(Flags.StandardValuesSupported); 583return EntryFlags.HasFlag(Flags.CustomPaint); 600public bool IsTextEditable => IsValueEditable && EntryFlags.HasFlag(Flags.TextEditable); 635public virtual bool NeedsDropDownButton => EntryFlags.HasFlag(Flags.DropDownEditable); 641=> EntryFlags.HasFlag(Flags.ModalEditable) && (IsValueEditable || EntryFlags.HasFlag(Flags.ReadOnlyEditable)); 756public bool ShouldRenderPassword => EntryFlags.HasFlag(Flags.RenderPassword); 760|| EntryFlags.HasFlag(Flags.RenderReadOnly) 761|| (!IsValueEditable && !EntryFlags.HasFlag(Flags.ReadOnlyEditable)); 1481protected bool GetFlagSet(Flags flags) => (flags & EntryFlags) != 0; 1534bool bold = EntryFlags.HasFlag(Flags.LabelBold); 2044=> _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)