CTreeCtrl::SetTextColor
更新 : 2007 年 11 月
このメンバ関数は、Windows SDK に記述されている Win32 メッセージ TVM_SETTEXTCOLOR の動作を実装します。
COLORREF SetTextColor(
COLORREF clr
);
パラメータ
- clr
新しいテキスト色を表す COLORREF 値。-1 を指定すると、コントロールのテキスト色がシステム カラーに戻ります。
戻り値
設定前のテキスト色を表す COLORREF 値を返します。コントロールのテキスト色としてシステム カラーが使用されている場合、-1 を返します。
使用例
// change text color to white and background to dark blue
m_TreeCtrl.SetTextColor(RGB(255, 255, 255));
ASSERT(m_TreeCtrl.GetTextColor() == RGB(255, 255, 255));
m_TreeCtrl.SetBkColor(RGB(0, 0, 128));
ASSERT(m_TreeCtrl.GetBkColor() == RGB(0, 0, 128));
// force repaint immediately
m_TreeCtrl.Invalidate();
必要条件
ヘッダー : afxcmn.h