CButton::SetNote
設定目前命令連結控制的注意事項文字。
BOOL SetNote(
LPCTSTR lpszNote
);
參數
參數 |
描述 |
---|---|
[in] lpszNote |
要設定為命令連結控制的注意事項文字的 Unicode 字串。 |
傳回值
true ,如果此方法成功,否則, false。
備註
使用這個方法與按鈕樣式是 BS_COMMANDLINK 或 BS_DEFCOMMANDLINK的控制項。
這個方法會將 BCM_SETNOTE 資訊,在 Windows SDK說明。
需求
標題: afxwin.h
這個方法會 Windows Vista (含) 以後版本支援。
這個方法的其他需要。 Windows Vista 通用控制項的組建需求說明。
範例
下列程式碼範例會定義變數, m_cmdLink,用來以程式設計方式存取命令連結控制項。 這個變數會在下面的範例。
public:
// Variable to access programatically defined command link control.
CButton m_cmdLink;
// Variable to access programatically defined split button control.
CButton m_splitButton;
下列程式碼範例會將命令連結控制的注意事項文字。
// Set the command link text.
m_cmdLink.SetNote(_T("This is the command link note."));