ResetState() public method

public ResetState ( ) : void
return void
コード例 #1
0
ファイル: ListWindow.cs プロジェクト: gAdrev/monodevelop
 /// <summary>
 /// This method is used to set the completion window to it's inital state.
 /// This is required for re-using the window object.
 /// </summary>
 protected internal virtual void ResetState()
 {
     HideWhenWordDeleted     = false;
     lastCommitCharEndoffset = -1;
     list.ResetState();
 }
コード例 #2
0
ファイル: ListWindow.cs プロジェクト: jtorres/monodevelop-1
 /// <summary>
 /// This method is used to set the completion window to it's inital state.
 /// This is required for re-using the window object.
 /// </summary>
 protected internal virtual void ResetState()
 {
     HideWhenWordDeleted = false;
     list.ResetState();
 }
コード例 #3
0
 /// <summary>
 /// This method is used to set the completion window to it's inital state.
 /// This is required for re-using the window object.
 /// </summary>
 protected virtual void ResetState()
 {
     HideWhenWordDeleted = false;
     endOffset           = -1;
     list.ResetState();
 }