SVsFontAndColorStorage Interface

 

Object providing 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)

[ComVisibleAttribute(false)]
[GuidAttribute("40BC7B1A-E625-4DA1-86B4-7660F3CCBB16")]
[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;
Return to top
Show: