コード例 #1
0
 public void DisplayTextLineContainingBufferPosition(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition, double verticalDistance, ViewRelativePosition relativeTo, double?viewportWidthOverride, double?viewportHeightOverride)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public Microsoft.VisualStudio.Text.SnapshotSpan GetTextElementSpan(Microsoft.VisualStudio.Text.SnapshotPoint point)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public Microsoft.VisualStudio.Text.Formatting.ITextViewLine GetTextViewLineContainingBufferPosition(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
ファイル: MockTextCaret.cs プロジェクト: shijiong/ntvsiot
 public CaretPosition MoveTo(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition, Microsoft.VisualStudio.Text.PositionAffinity caretAffinity)
 {
     throw new System.NotImplementedException();
 }
コード例 #5
0
ファイル: MockTextCaret.cs プロジェクト: shijiong/ntvsiot
 public CaretPosition MoveTo(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition)
 {
     _view.Selection.Clear();
     _position = bufferPosition;
     return(Position);
 }
コード例 #6
0
 public bool ContainsBufferPosition(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition)
 {
     throw new NotImplementedException();
 }
コード例 #7
0
 public CaretPosition MoveTo(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition)
 {
     _view.Selection.Clear();
     _position = new MockTrackingPoint((MockTextSnapshot)bufferPosition.Snapshot, bufferPosition.Position);
     return(Position);
 }
コード例 #8
0
 public Microsoft.VisualStudio.Text.Formatting.TextBounds GetCharacterBounds(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition)
 {
     throw new System.NotImplementedException();
 }
コード例 #9
0
 public Microsoft.VisualStudio.Text.SnapshotSpan GetTextElementSpan(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition)
 {
     throw new System.NotImplementedException();
 }
コード例 #10
0
 public System.Windows.Media.TextFormatting.TextRunProperties GetCharacterFormatting(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition)
 {
     throw new System.NotImplementedException();
 }
コード例 #11
0
 public TextBounds GetExtendedCharacterBounds(Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition)
 {
     throw new NotImplementedException();
 }
コード例 #12
0
ファイル: HexTextView.cs プロジェクト: pashav15/pashav
 VSTF.IWpfTextViewLine VSTE.IWpfTextView.GetTextViewLineContainingBufferPosition(VST.SnapshotPoint bufferPosition)
 {
     throw new NotImplementedException();
 }
コード例 #13
0
ファイル: HexTextView.cs プロジェクト: pashav15/pashav
 VST.SnapshotSpan VSTE.ITextView.GetTextElementSpan(VST.SnapshotPoint point)
 {
     throw new NotImplementedException();
 }
コード例 #14
0
ファイル: HexTextView.cs プロジェクト: pashav15/pashav
 void VSTE.ITextView.DisplayTextLineContainingBufferPosition(VST.SnapshotPoint bufferPosition, double verticalDistance, VSTE.ViewRelativePosition relativeTo, double?viewportWidthOverride, double?viewportHeightOverride)
 {
     throw new NotImplementedException();
 }