public VisualBasicTextViewCommandHandler(TextView view)
 {
     this._view = view;
     this._nextHandler = view.AddCommandHandler(this);
 }
예제 #2
0
 public HtmlTextViewCommandHandler(TextView view)
 {
     this._view = view;
     this._nextHandler = view.AddCommandHandler(this);
 }
 public JSharpTextViewCommandHandler(TextView view)
 {
     this._view = view;
     this._textList = new ArrayList();
     this._nextHandler = view.AddCommandHandler(this);
 }
 public BlockIndentTextViewCommandHandler(TextView view)
 {
     this._view = view;
     this._nextHandler = view.AddCommandHandler(this);
 }
 public WebFormsTextViewCommandHandler(TextView view)
 {
     this._view = view;
     this._nextHandler = view.AddCommandHandler(this);
 }