Source.OnChangeLineAttributes(Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called when one or more lines' attributes (font, color) have changed.
public:
virtual void OnChangeLineAttributes(int firstLine, int lastLine);
public:
virtual void OnChangeLineAttributes(int firstLine, int lastLine);
virtual void OnChangeLineAttributes(int firstLine, int lastLine);
public virtual void OnChangeLineAttributes (int firstLine, int lastLine);
abstract member OnChangeLineAttributes : int * int -> unit
override this.OnChangeLineAttributes : int * int -> unit
Public Overridable Sub OnChangeLineAttributes (firstLine As Integer, lastLine As Integer)
Parameters
- firstLine
- Int32
The first line that was changed.
- lastLine
- Int32
The last line that was changed.
Implements
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.