Skip to main content
All docs
V25.1
  • EnvironmentPolicy.ReadCurrentProcessData Event

    Fires after the DevExpress control has read current process data.

    Namespace: DevExpress.Data.Utils

    Assembly: DevExpress.Data.v25.1.dll

    NuGet Package: DevExpress.Data

    #Declaration

    public static event EventHandler<EnvironmentPolicy.ReadCurrentProcessDataEventArgs> ReadCurrentProcessData

    #Event Data

    The ReadCurrentProcessData event's data class is EnvironmentPolicy.ReadCurrentProcessDataEventArgs. The following properties provide information specific to this event:

    Property Description
    Parameter Gets the name of the process parameter.
    Value Gets or sets the value of the process parameter.

    The event data class exposes the following methods:

    Method Description
    ToString() Returns a human-readable representation of the ReadCurrentProcessDataEventArgs object.

    #Remarks

    The EnvironmentPolicy fires the ReadCurrentProcessData event after the DevExpress control has read the value of the process parameter (e.Parameter). Use the e.Value event parameter to modify the parameter value if necessary.

    Read the following topic for additional information: Environment Policy.

    See Also