Enum PropertyGridApplyFlags
Defines all flags used in the property grid and other property editing controls when property value is applied back to object instance.
[Flags]
public enum PropertyGridApplyFlags
Fields
Default = 1Default value for the 'ApplyFlags' property.
PropEvent = 1Raises 'PropertyChanged' event of the item when property is changed in the control.
PropInfoSetValue = 2Calls SetValue(object, object) when property is changed in the control. This requires 'Instance' and 'PropInfo' properties to be specified in the item.
ReloadAfterSetValue = 4Reloads property value again after set value (PropInfoSetValue) and updates the control.
ReloadAllAfterSetValue = 8Reloads all property values again after set value (PropInfoSetValue) and updates the control.
SetValueAndReload = PropInfoSetValue | ReloadAfterSetValueFlags ReloadAfterSetValue and PropInfoSetValue are turned on.
SetValueAndReloadAll = PropInfoSetValue | ReloadAllAfterSetValueFlags ReloadAllAfterSetValue and PropInfoSetValue are turned on.
Remarks
This enumeration supports a bitwise combination of its member values.