IVsFontAndColorStorage.SetItem 方法

存储在注册表中名为 Display Item 的用户可修改的颜色和字体设置。

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

语法

声明
Function SetItem ( _
    szName As String, _
    pInfo As ColorableItemInfo() _
) As Integer
int SetItem(
    string szName,
    ColorableItemInfo[] pInfo
)

参数

  • szName
    类型:System.String
    [in] 包含显示项目的非本地化名称以 null 终止的字符串。

返回值

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

备注

COM 签名

从 vsshell.idl:

HRESULT IVsFontAndColorStorage::SetItem(
   [in] LPCOLESTR szName,
   [in] ColorableItemInfo *pInfo
);

如果对 IVSFontAndColorStorage::SetItem 的调用成功,并且,项目的类中 OpenCategory 打开在 FCSF_PROPAGATECHANGES 模式下,方法生成 OnItemChanged要处理的事件。 如果项目的类别未打开与 FCSF_PROPAGATECHANGES,使用 GetItemGetItemByNameGetItem,应用程序必须查询该环境获取此信息。

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

.NET Framework 安全性

请参见

参考

IVsFontAndColorStorage 接口

Microsoft.VisualStudio.Shell.Interop 命名空间

IVsFontAndColorStorage2