Example #1
0
        /// <summary>Attempts to display the text point's location.</summary>
        /// <returns>A Boolean value indicating true if the span of text fits within the current code editor, false if not.</returns>
        /// <param name="how">Optional. A <see cref="T:EnvDTE.vsPaneShowHow" /> constant that determines how the code is displayed.</param>
        /// <param name="pointOrCount">Optional. The endpoint of the selected range of text to be displayed. It can be either a <see cref="T:EnvDTE.TextPoint" /> or an integer.</param>
        public bool TryToShow(vsPaneShowHow how, object pointOrCount)
        {
            var editPoint = parent.CreateEditPoint(this);

            return(editPoint.TryToShow(how, pointOrCount));
        }
Example #2
0
 public bool TryToShow(vsPaneShowHow How, object PointOrCount)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public bool TryToShow(vsPaneShowHow How, object PointOrCount)
 {
     return(false);
 }
 public bool TryToShow(vsPaneShowHow How, object PointOrCount)
 {
     throw new NotImplementedException();
 }
Example #5
0
 /// <summary>Attempts to display the text point's location.</summary>
 /// <returns>A Boolean value indicating true if the span of text fits within the current code editor, false if not.</returns>
 /// <param name="how">Optional. A <see cref="T:EnvDTE.vsPaneShowHow" /> constant that determines how the code is displayed.</param>
 /// <param name="pointOrCount">Optional. The endpoint of the selected range of text to be displayed. It can be either a <see cref="T:EnvDTE.TextPoint" /> or an integer.</param>
 public bool TryToShow(vsPaneShowHow how, object pointOrCount)
 {
     var editPoint = parent.CreateEditPoint(this);
     return editPoint.TryToShow(how, pointOrCount);
 }
 public bool TryToShow(vsPaneShowHow How = vsPaneShowHow.vsPaneShowCentered, object PointOrCount = null)
 {
     return true;
 }
Example #7
0
 public bool TryToShow(vsPaneShowHow How = vsPaneShowHow.vsPaneShowCentered, object PointOrCount = null)
 {
     return(true);
 }