SVsFontAndColorStorage Interface
Visual Studio 2015
Object providing access to the Visual Studio SDK implementation of the Font and Color storage service.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
This object supports two interfaces: IVsFontAndColorStorage and IVsFontAndColorUtilities
To obtain a supported interface, pass SVsFontAndColorStorage to GetService and then cast it to the desired supported interface.
An instance of IVsFontAndColorStorage may be obtained with:
IVsFontAndColorStorage instance = GetService(SVsFontAndColorStorage) as IVsFontAndColorStorage;
An instance of IVsFontAndColorUtilities may be obtained with:
IVsFontAndColorUtilities instance = GetService(SVsFontAndColorStorage) as IVsFontAndColorUtilities;
Show: