Inheritance: IVsEditorFactory, IDisposable
 public MySqlHybridScriptEditorPane(ServiceProvider sp, SqlEditorFactory factory, ScriptLanguageType scriptType = ScriptLanguageType.JavaScript)
     : base(sp)
 {
     Factory      = factory;
     DocumentPath = factory.LastDocumentPath;
     _editor      = new MySqlHybridScriptEditor(sp, this, scriptType);
 }
Exemple #2
0
 public SqlEditorPane(ServiceProvider sp, SqlEditorFactory factory)
     : base(sp)
 {
     Factory      = factory;
     DocumentPath = factory.LastDocumentPath;
     editor       = new SqlEditor(sp, this);
 }
 public SqlEditorPane(ServiceProvider sp, SqlEditorFactory factory)
   : base(sp)
 {
   Factory = factory;
   DocumentPath = factory.LastDocumentPath;
   editor = new SqlEditor(sp, this);
 }