コード例 #1
0
 int IVsTextView.RestrictViewRange(int iMinLine, int iMaxLine, IVsViewRangeClient pClient)
 {
     return VSConstants.E_NOTIMPL;
 }
コード例 #2
0
ファイル: VsKeyProcessorTest.cs プロジェクト: jockus/VsVim
 int IVsTextView.RestrictViewRange(int iMinLine, int iMaxLine, IVsViewRangeClient pClient)
 {
     throw new System.NotImplementedException();
 }
コード例 #3
0
 public int RestrictViewRange(int iMinLine, int iMaxLine, IVsViewRangeClient pClient)
 {
     return VSConstants.S_OK;
 }
コード例 #4
0
 public int RestrictViewRange(int iMinLine, int iMaxLine, IVsViewRangeClient pClient)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 int IVsTextView.RestrictViewRange(int iMinLine, int iMaxLine, IVsViewRangeClient pClient)
 {
     throw new System.NotImplementedException();
 }
コード例 #6
0
ファイル: MockTextView.cs プロジェクト: kubiix/StyleCop
 /// <summary>
 /// The restrict view range.
 /// </summary>
 /// <param name="iMinLine">
 /// The i min line.
 /// </param>
 /// <param name="iMaxLine">
 /// The i max line.
 /// </param>
 /// <param name="pClient">
 /// The p client.
 /// </param>
 /// <returns>
 /// The restrict view range.
 /// </returns>
 /// <exception cref="Exception">
 /// </exception>
 public int RestrictViewRange(int iMinLine, int iMaxLine, IVsViewRangeClient pClient)
 {
     throw new Exception("The method or operation is not implemented.");
 }
コード例 #7
0
 public int RestrictViewRange(int iMinLine, int iMaxLine, IVsViewRangeClient pClient)
 {
     throw new NotImplementedException();
 }
コード例 #8
0
ファイル: MockTextView.cs プロジェクト: jonthegiant/StyleCop
 public int RestrictViewRange(int iMinLine, int iMaxLine, IVsViewRangeClient pClient)
 {
     throw new Exception("The method or operation is not implemented.");
 }
コード例 #9
0
ファイル: VsTextViewMock.cs プロジェクト: zachwieja/RTVS
 public int RestrictViewRange(int iMinLine, int iMaxLine, IVsViewRangeClient pClient)
 {
     return(VSConstants.S_OK);
 }