Exemple #1
0
 public int NavigateTo(TextSpan[] pts)
 {
     if (_findTarget != null)
     {
         return(_findTarget.NavigateTo(pts));
     }
     return(VSConstants.E_NOTIMPL);
 }
Exemple #2
0
        int IVsFindTarget.NavigateTo(TextSpan[] pts)
        {
            // do we need to activate/show window here first?
            IVsFindTarget findTarget = GetView(sourceFrame) as IVsFindTarget;

            if (findTarget != null)
            {
                return(findTarget.NavigateTo(pts));
            }

            return(VSConstants.E_NOTIMPL);
        }