Skip to main content
All docs
V24.2

EnvironmentPolicy.SuppressSettingCurrentDirectory() Method

Prevents DevExpress controls from setting the current directory.

Namespace: DevExpress.Data.Utils

Assembly: DevExpress.Data.v24.2.dll

Declaration

public static void SuppressSettingCurrentDirectory()

Remarks

The following example activates the SuppressSettingCurrentDirectory restrictive policy:

using System;
using System.Windows.Forms;

namespace EnvironmentPolicyDemo {
    internal static class Program {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main() {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            DevExpress.Data.Utils.EnvironmentPolicy.SuppressSettingCurrentDirectory();
            Application.Run(new Form1());
        }
    }
}

The EnvironmentPolicy fires the SettingCurrentDirectory event when the DevExpress control attempts to set the path of the current working directory. Handle the SettingCurrentDirectory event to spot, analyze, and/or cancel the operation based on a specific condition.

Tip

Read the following topic for additional information: Environment Policy.

See Also