The RTFSync function ensures that the Rich Text Format (RTF) message text matches the plain text version. It is necessary to call this function before reading the RTF version and after modifying the RTF version.
Header file: | MAPIUTIL.H |
Implemented by: | MAPI |
Called by: | RTF-aware client applications and message store providers |
HRESULT RTFSync(
LPMESSAGE lpMessage,
ULONG ulFlags,
BOOL FAR * lpfMessageUpdated
);
All other bits in the ulFlags parameter are reserved for future use.
If the PR_RTF_IN_SYNC property is missing or is FALSE, before reading the PR_RTF_COMPRESSED property the RTFSync function should be called with the RTF_SYNC_BODY_CHANGED flag set.
If the STORE_RTF_OK flag is not set in the PR_STORE_SUPPORT_MASK property, this function should be called with the RTF_SYNC_RTF_CHANGED flag set after modifying PR_RTF_COMPRESSED.
If both PR_BODY and PR_RTF_COMPRESSED have been changed, the RTFSync function should be called with both flags set.
If the value of the lpfMessageUpdated parameter is set to TRUE, then the IMAPIProp::SaveChanges method should be called for the message. If SaveChanges is not called, the modifications will not be saved in the message.
Message store providers can use RTFSync to keep the PR_BODY and PR_RTF_COMPRESSED properties synchronized.
For more information, see Supporting RTF Text for Message Store Providers.
RTF Synchronization Functions, WrapCompressedRTFStream