Inheritance: IReplEditor2
Ejemplo n.º 1
0
 public ReplEditorReplaceListener(ReplEditor replEditor)
 {
     if (replEditor == null)
     {
         throw new ArgumentNullException(nameof(replEditor));
     }
     this.replEditor = replEditor;
 }
Ejemplo n.º 2
0
 public GuidObjectsProvider(ReplEditor replEditorUI)
 {
     this.replEditorUI = replEditorUI;
 }
Ejemplo n.º 3
0
 public CachedTextColorsCollectionBuilder(ReplEditor owner, int totalLength)
 {
     this.owner = owner;
     this.cachedTextColorsCollection = new CachedTextColorsCollection();
     this.totalLength = totalLength;
 }
Ejemplo n.º 4
0
		public CachedTextColorsCollectionBuilder(ReplEditor owner, int totalLength) {
			this.owner = owner;
			cachedTextColorsCollection = new CachedTextColorsCollection();
			this.totalLength = totalLength;
		}
Ejemplo n.º 5
0
			public GuidObjectsProvider(ReplEditor replEditorUI) {
				this.replEditorUI = replEditorUI;
			}
Ejemplo n.º 6
0
 public ReplEditorReplaceListener(ReplEditor replEditor) => this.replEditor = replEditor ?? throw new ArgumentNullException(nameof(replEditor));
Ejemplo n.º 7
0
		public ReplEditorReplaceListener(ReplEditor replEditor) {
			if (replEditor == null)
				throw new ArgumentNullException(nameof(replEditor));
			this.replEditor = replEditor;
		}