IVsFontAndColorStorage.GetFont 方法

返回当前打开的类别的字体属性。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)

语法

声明
Function GetFont ( _
    <OutAttribute> pLOGFONT As LOGFONTW(), _
    <OutAttribute> pInfo As FontInfo() _
) As Integer
int GetFont(
    LOGFONTW[] pLOGFONT,
    FontInfo[] pInfo
)

参数

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell.idl:

HRESULT IVsFontAndColorStorage::GetFont(
   [in, out] LOGFONTW *pLOGFONT,
   [in, out] FontInfo *pInfo
);

pLOGFONT 或 pInfo 可能是 NULL (c++) 或 nullnull 引用(在 Visual Basic 中为 Nothing) (c#)。 检索的数据是文本名称,字符集,并且磅值。

在 C++ 中,文本名称是必须由客户端释放的 BSTR。

将由呈现文本的应用程序到 Visual Studio 环境更新其显示与此方法返回的设置。

.NET Framework 安全性

请参见

参考

IVsFontAndColorStorage 接口

Microsoft.VisualStudio.Shell.Interop 命名空间

IVsFontAndColorStorage2