Пример #1
0
 private void OnVerticalTextScroll(VSTextEditorScrollEventArgs e)
 {
     if (VerticalTextScroll != null)
         VerticalTextScroll(this, e);
 }
Пример #2
0
 void ImplementOnHorizontalTextScroll(object sender, VSTextEditorScrollEventArgs e)
 {
     OnHorizontalTextScroll(e);
 }
Пример #3
0
 void ImplementOnVerticalTextScroll(object sender, VSTextEditorScrollEventArgs e)
 {
     OnVerticalTextScroll(e);
 }
Пример #4
0
 protected virtual void OnHorizontalTextScroll(VSTextEditorScrollEventArgs e)
 {
     if (HorizontalTextScroll != null)
         HorizontalTextScroll(this, e);
 }