SVsFontAndColorStorage Interface
Object that provides access to the Visual Studio SDK implementation of the Font and Color storage service.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in microsoft.visualstudio.shell.interop.dll)
Assembly: Microsoft.VisualStudio.Shell.Interop (in microsoft.visualstudio.shell.interop.dll)
[GuidAttribute("40BC7B1A-E625-4DA1-86B4-7660F3CCBB16")] [GuidAttribute("40BC7B1A-E625-4DA1-86B4-7660F3CCBB16")] public interface SVsFontAndColorStorage
/** @attribute GuidAttribute("40BC7B1A-E625-4DA1-86B4-7660F3CCBB16") */
/** @attribute GuidAttribute("40BC7B1A-E625-4DA1-86B4-7660F3CCBB16") */
public interface SVsFontAndColorStorage
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;