Ejemplo n.º 1
0
        public Control CreateEditorControl(Action <string> helpCallback)
        {
            if (m_py == null)
            {
                return(null);
            }
            var control = m_py.CreateTextEditorControl("", helpCallback);

            return(control);
        }
 public Control CreateEditorControl(Action <string> helpCallback)
 {
     return((_py == null) ? null : _py.CreateTextEditorControl("", helpCallback));
 }