Email Properties appearing on print outs

Add-in Express™ Support Service
That's what is more important than anything else

Email Properties appearing on print outs
Custom properties added to a mail item is appearing when printing the email 
Sean Devenish




Posts: 78
Joined: 2015-11-30
Hi Guys,

We add several custom properties to mail items in Outlook (Exchange or O365 email) using our add-in. This is how we add properties:


userProps = mail.UserProperties;
                userProp = userProps.Item(sPropName) ?? userProps.Add(sPropName, OlUserPropertyType.olText, false,
                               OlUserPropertyType.olText);
                if (userProp != null)
                {
                    userProp.Value = sPropValue;
                    mail.Save();
                    return true;
                }


When our users print the email, the custom property is appearing on the print out - how can we stop this?

Regards,
Posted 06 Jan, 2020 19:04:52 Top
Andrei Smolin


Add-in Express team


Posts: 18793
Joined: 2006-05-11
Hello Sean,

Have a look at https://community.progress.com/community_groups/openedge_development/f/19/t/34761.


Andrei Smolin
Add-in Express Team Leader
Posted 08 Jan, 2020 04:46:25 Top