IVsStatusbar.SetColorText 方法

使用前景色和背景色设置状态栏文本。

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

语法

声明
Function SetColorText ( _
    pszText As String, _
    crForeColor As UInteger, _
    crBackColor As UInteger _
) As Integer
int SetColorText(
    string pszText,
    uint crForeColor,
    uint crBackColor
)

参数

  • pszText
    类型:System.String
    [in] 显示的文本在状态文本。

返回值

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

备注

COM 签名

从 vsshell.idl:

HRESULT IVsStatusbar::SetColorText(
   [in]LPCOLESTR pszText,
   [in] COLORREF crForeColor,
   [in] COLORREF crBackColor
);

方法忽略 crForeColor 和 crBackColor 的值和总是设置前景色设置为白色和背景色更改为后者。

.NET Framework 安全性

请参见

参考

IVsStatusbar 接口

Microsoft.VisualStudio.Shell.Interop 命名空间