Skip to main content
All docs
V25.1
  • CellEditorOpenedEventArgs.Editor Property

    Returns the active cell editor.

    Namespace: DevExpress.Xpf.Spreadsheet

    Assembly: DevExpress.Xpf.Spreadsheet.v25.1.dll

    NuGet Package: DevExpress.Wpf.Spreadsheet

    Declaration

    public Control Editor { get; }

    Property Value

    Type Description
    Control

    An object that specifies the active editor.

    Remarks

    Use the CellEditorOpenedEventArgs.IsCustom and CellEditorOpenedEventArgs.CustomEditorType properties to determine the type of the active cell editor. Depending on these property values, you can cast the Editor value to the following controls:

    Control Description IsCustom CustomEditorType
    System.Windows.Controls.TextBox A Windows text box control (the default cell editor). false
    DevExpress.Xpf.Editors.ComboBoxEdit A DevExpress combo box control. true ComboBox
    DevExpress.Xpf.Editors.DateEdit A DevExpress date picker control. true DateEdit
    DevExpress.Xpf.Editors.CheckEdit A DevExpress checkbox control. true CheckBox

    The cast operation is not required if you handle the basic events (such as key and mouse events) for the cell editor.

    Example. Use the CellEditorOpened Event to Validate User Input

    The code sample below demonstrates how to use a regular expression to check that a user enters a US phone number in the correct format. If a user types an invalid number, the editor’s background color changes to pink. If a number in the correct format is entered, the editor’s background color resets to the original color and the phone number is converted to the following format: (123) 456-7890.

    Handle the CellEditorOpened Event

    <dxsps:SpreadsheetControl 
        CommandBarStyle="Ribbon" 
        ShowStatusBar="True" 
        ShowFormulaBar="True" 
        Name="spreadsheetControl1"
        DocumentSource="pack://application:,,,/WpfSpreadsheet;component/Documents/Employees.xlsx"
        CellEditorOpened="OnCellEditorOpened">
    </dxsps:SpreadsheetControl>
    
    using System.Text.RegularExpressions;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Media;
    
    namespace WpfSpreadsheet
    {
        public partial class MainWindow : DevExpress.Xpf.Core.ThemedWindow
        {
            public MainWindow()
            {
                InitializeComponent();
            }
    
            Brush editorBackground;
            // Specify the regular expression to check a phone number.
            Regex phoneNumber = new Regex(@"^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$");
    
            void OnCellEditorOpened(object sender, DevExpress.Xpf.Spreadsheet.CellEditorOpenedEventArgs e)
            {
                // If a user activates an editor for a cell in the "Phone Number" column,
                // the editor's TextChanged event fires. This example assumes
                // that the target cell contains the default editor
                // (a TextBox control).
                if (spreadsheetControl1.ActiveCell.ColumnIndex == 5 &&
                    spreadsheetControl1.ActiveCell.RowIndex > 3)
                { 
                    // Access the active cell editor.
                    TextBox textEditor = e.Editor as TextBox;
                    if (textEditor == null)
                        return;
                    this.editorBackground = textEditor.Background;
                    textEditor.TextChanged += OnTextChanged;
                    textEditor.IsVisibleChanged += OnIsVisibleChanged;
                }
            }
    
            void OnTextChanged(object sender, TextChangedEventArgs e)
            {
                TextBox textEditor = sender as TextBox;
                // If the entered number matches the specified regular expression,
                // convert this number to the standard phone number format.
                if (phoneNumber.IsMatch(textEditor.Text))
                {
                    textEditor.Text = phoneNumber.Replace(textEditor.Text, "($1) $2-$3");
                    textEditor.Background = editorBackground;
                }
                else
                    // Otherwise, change the editor's background color to pink
                    // to indicate that the user input is invalid.
                    textEditor.Background = Brushes.LightPink;
            }
            void OnIsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
            {
                TextBox textEditor = sender as TextBox;
                if (!textEditor.IsVisible)
                {
                    textEditor.TextChanged -= OnTextChanged;
                    textEditor.IsVisibleChanged -= OnIsVisibleChanged;
                }
            }
        }
    }
    

    The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Editor property.

    Note

    The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

    See Also