// ------------------------------
        // private
        // ------------------------------
        private static void SelectEditor(IEditor tableEditor, IFigure cellFigure)
        {
            var nextEditor = cellFigure.GetEditor();

            if (nextEditor != null)
            {
                nextEditor.RequestSelect(SelectKind.True, true);
            }
        }