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
)
参数
- pLOGFONT
类型:array<Microsoft.VisualStudio.Shell.Interop.LOGFONTW[]
[in, out] 对 LOGFONTW 结构。
- pInfo
类型:array<Microsoft.VisualStudio.Shell.Interop.FontInfo[]
[in, out] 对 FontInfo 枚举。
返回值
类型: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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。