EditableView.cs
上传用户:hbhltzc
上传日期:2022-06-04
资源大小:1925k
文件大小:1k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. using System;
  2. using System.Text;
  3. using System.Drawing;
  4. using System.Windows.Forms;
  5. namespace XmlNotepad {
  6.     public interface IEditableView {
  7.         bool BeginEdit(string value);
  8.         bool EndEdit(bool cancel);
  9.         bool IsEditing { get; }
  10.         void SelectText(int index, int length);
  11.         bool ReplaceText(int index, int length, string replacement);
  12.         int SelectionStart { get; }
  13.         int SelectionLength { get; }
  14.         Rectangle EditorBounds { get; }
  15.         void BubbleKeyDown(KeyEventArgs e);
  16.     }
  17. }