Interface ITextMarkerService
Assembly: SqlDotNet.Debugger.dll
Syntax
public interface ITextMarkerService
Properties
|
Improve this Doc
View Source
TextMarkers
Gets the list of text markers.
Declaration
IEnumerable<ITextMarker> TextMarkers { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<ITextMarker> |
|
Methods
|
Improve this Doc
View Source
Create(Int32, Int32)
Creates a new text marker. The text marker will be invisible at first,
you need to set one of the Color properties to make it visible.
Declaration
ITextMarker Create(int startOffset, int length)
Parameters
Type |
Name |
Description |
System.Int32 |
startOffset |
|
System.Int32 |
length |
|
Returns
|
Improve this Doc
View Source
GetMarkersAtOffset(Int32)
Finds all text markers at the specified offset.
Declaration
IEnumerable<ITextMarker> GetMarkersAtOffset(int offset)
Parameters
Type |
Name |
Description |
System.Int32 |
offset |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<ITextMarker> |
|
|
Improve this Doc
View Source
Remove(ITextMarker)
Removes the specified text marker.
Declaration
void Remove(ITextMarker marker)
Parameters
|
Improve this Doc
View Source
RemoveAll(Predicate<ITextMarker>)
Removes all text markers that match the condition.
Declaration
void RemoveAll(Predicate<ITextMarker> predicate)
Parameters
Type |
Name |
Description |
System.Predicate<ITextMarker> |
predicate |
|