Beispiel #1
0
 private OutliningManager(ITextBuffer buffer)
 {
     this.regions         = new BufferOutlines();
     this.outliningTagger = new OutliningTagger(this);
     this.glyphTagger     = new GlyphTagger(this);
     LoadRegions(buffer);
 }
Beispiel #2
0
 protected BaseOutliningManager(ITextBuffer buffer)
 {
     this.Regions         = new BufferOutlines();
     this.outliningTagger = new OutliningTagger(this);
     this.glyphTagger     = new GlyphTagger(this);
 }