Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Called when one or more lines' attributes (font, color) have changed.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
Syntax
'Declaration
Public Overridable Sub OnChangeLineAttributes ( _
firstLine As Integer, _
lastLine As Integer _
)
'Usage
Dim instance As Source
Dim firstLine As Integer
Dim lastLine As Integer
instance.OnChangeLineAttributes(firstLine, _
lastLine)
public virtual void OnChangeLineAttributes(
int firstLine,
int lastLine
)
public:
virtual void OnChangeLineAttributes(
int firstLine,
int lastLine
)
abstract OnChangeLineAttributes :
firstLine:int *
lastLine:int -> unit
override OnChangeLineAttributes :
firstLine:int *
lastLine:int -> unit
public function OnChangeLineAttributes(
firstLine : int,
lastLine : int
)
Parameters
- firstLine
Type: System.Int32
The first line that was changed.
- lastLine
Type: System.Int32
The last line that was changed.
Implements
IVsTextLinesEvents.OnChangeLineAttributes(Int32, Int32)
Remarks
This method is called when the attributes of one or more lines have been changed. A line's attributes includes the font and the color.
This is an implementation of IVsTextLinesEvents' OnChangeLineAttributes method.
The base method does nothing.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.