SVsFontAndColorStorage Interface
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.
Object providing access to the Visual Studio SDK implementation of the Font and Color storage service.
public interface class SVsFontAndColorStorage
public interface class SVsFontAndColorStorage
__interface SVsFontAndColorStorage
[System.Runtime.InteropServices.ComVisible(false)]
[System.Runtime.InteropServices.Guid("40BC7B1A-E625-4DA1-86B4-7660F3CCBB16")]
public interface SVsFontAndColorStorage
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Runtime.InteropServices.Guid("40BC7B1A-E625-4DA1-86B4-7660F3CCBB16")>]
type SVsFontAndColorStorage = interface
Public Interface SVsFontAndColorStorage
- Attributes
Remarks
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;