CRichEditCtrl::SetDefaultCharFormat
設定新的文字字元格式的屬性是在此 CRichEditCtrl 物件。
BOOL SetDefaultCharFormat(
CHARFORMAT& cf
);
BOOL SetDefaultCharFormat(
CHARFORMAT2& cf
);
參數
cf
在第一個版本,至新建立的預設字元格式的屬性 CHARFORMAT 結構的指標。在第二個版本,則 CHARFORMAT2 結構的指標,是 Rich Edit 2.0 擴充。 CHARFORMAT 結構,包含預設字元格式的屬性。
傳回值
如果不是零,則成功,則為,否則為 0。
備註
這個函式變更 cf 的 dwMask 成員指定的屬性。
如需詳細資訊,請參閱 EM_SETCHARFORMAT 訊息和 CHARFORMAT 和 CHARFORMAT2 結構在 Windows SDK。
範例
CHARFORMAT cf = {0};
// Modify the default character format so that all new
// text is striked out and not bold.
cf.cbSize = sizeof(cf);
cf.dwMask = CFM_STRIKEOUT|CFM_BOLD;
cf.dwEffects = CFE_STRIKEOUT;
m_myRichEditCtrl.SetDefaultCharFormat(cf);
// Verify the settings are what is expected.
m_myRichEditCtrl.GetDefaultCharFormat(cf);
ASSERT((cf.dwMask&(CFM_STRIKEOUT|CFM_BOLD)) ==
(CFM_STRIKEOUT|CFM_BOLD));
ASSERT((cf.dwEffects&(CFE_STRIKEOUT|CFE_BOLD)) == CFE_STRIKEOUT);
需求
Header: afxcmn.h