45 lines
2.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
using VEPROMS.CSLA.Library;
namespace Volian.Controls.Library
{
public abstract partial class EditItem
{
public abstract void SetToolTip(string tip); // { ;}
public abstract void RefreshContent(); // { ; }
public abstract EditItem MyParentEditItem { get; set ; }
public abstract EditItem MyPreviousEditItem { get; set; }//{ get { return null; } set { ;} }
public abstract int ItemLeft { get; set; }//{ get { return 0; } set { ;} }
public abstract int TextLeft { get; }//{ get { return 0; } set { ;} }
public abstract int TextWidth { get; set ; }//{ get { return 0; } set { ;} }
public abstract Point ItemLocation { get; set ; }//{ get { return new Point(0, 0); } set { ;} }
public abstract int ItemWidth { get; set ; }//{ get { return 0; } set { ;} }
public abstract void RefreshOrdinal(); // { ;}
public abstract bool Expanded { get; set ; }//{ get { return false; } set { ;} }
public abstract void RefreshTab(); // { ;}
public abstract void SetFocus(); // { ;}
public abstract void SaveContents(); // { ;}
public abstract bool CanExpand { get; set ; }//{ get { return false; } set { ;} }
public abstract void HandleResize(); // { ;}
public abstract void MatchExpanded(); // { ;}
public abstract void ItemSelect(); // { ;}
public abstract void ItemShow(); // { ;}
public abstract StepRTB MyStepRTB { get; }
public abstract DialogResult ReplaceText(string rpltxt, string fndstr, bool caseSensitive, bool matchWholeWord, bool reverse, bool prompt, IWin32Window fndrpldlg);
public abstract bool FindText(string str, bool caseSensitive, bool matchWholeWord, bool reverse);
public abstract void PositionToEnd();
public abstract string SelecteTextForFind { get;}
public abstract bool SpellCheckNext();
public abstract void IdentifyMe(bool highlight);
public abstract void SetActive();
public abstract bool IsEmpty();
public abstract void MakeNotEmpty();
public abstract void RefreshDisplay(bool editMode);
public abstract void ToggleEditView(E_ViewMode vwMode);
}
}