Colorizer Class
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.
Important
This API is not CLS-compliant.
This class implements the IVsColorizer interface and is used to support syntax highlighting in an editor.
public ref class Colorizer : IDisposable, Microsoft::VisualStudio::TextManager::Interop::IVsColorizer
[System.CLSCompliant(false)]
[System.Runtime.InteropServices.ComVisible(true)]
public class Colorizer : IDisposable, Microsoft.VisualStudio.TextManager.Interop.IVsColorizer
[System.Runtime.InteropServices.ComVisible(true)]
public class Colorizer : IDisposable, Microsoft.VisualStudio.TextManager.Interop.IVsColorizer
[<System.CLSCompliant(false)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type Colorizer = class
interface IVsColorizer
interface IDisposable
[<System.Runtime.InteropServices.ComVisible(true)>]
type Colorizer = class
interface IVsColorizer
interface IDisposable
Public Class Colorizer
Implements IDisposable, IVsColorizer
- Inheritance
-
Colorizer
- Attributes
- Implements
Remarks
The managed package framework (MPF) version of this class uses an IScanner object to handle all parsing tasks. The IScanner object communicates color information through the TokenInfo structure. The Colorizer class also helps the IScanner object track state by passing around a state variable the parser maintains.
This class handles colorization on a line by line basis.
Notes to Inheritors
The MPF version of this class performs all the work necessary to colorize a line of code by interacting with the IScanner object. If you find you need additional functionality not supported in the existing Colorizer class, you must derive a class from the Colorizer class and return an instance of your class from GetColorizer(IVsTextLines).
The default implementation of GetColorizer(IVsTextLines) instantiates the MPF version of Colorizer, passing to the Colorizer constructor an instance of the IScanner object obtained from GetScanner(IVsTextLines).
Notes to Callers
The colorizer object returned from GetColorizer(IVsTextLines) is stored in the Source object when the Source object is created. The Source object handles all interactions with the colorizer so there is no need for any outside involvement with the colorizer.
The methods of this class are documented in case you need to implement your own version of the Source class.
Constructors
Colorizer(LanguageService, IVsTextLines, IScanner) |
Initializes the Colorizer class. |
Properties
Scanner |
Returns the scanner being used. |
Methods
CloseColorizer() |
Called when the colorizer is disposed of. |
ColorizeLine(Int32, Int32, IntPtr, Int32, UInt32[]) |
Obtains color and font attribute information for each character in the specified line of text. |
Dispose() |
Disposes the object. |
Finalize() |
Called when the object is about to be destroyed. |
GetColorInfo(String, Int32, Int32) |
Returns the parsing state at the end of the line without returning any colorization information. |
GetLineInfo(IVsTextLines, Int32, IVsTextColorState) |
Returns color information about the specified line. |
GetStartState(Int32) |
Returns the initial parsing state. |
GetStateAtEndOfLine(Int32, Int32, IntPtr, Int32) |
Returns the parsing state at the end of the specified line. |
GetStateMaintenanceFlag(Int32) |
Called to determine if the colorizer requires per line state management. |
Resume() |
Called to resume use of the colorizer. |
Suspend() |
Called to suspend use of the colorizer. |