In the following code block there are a few bitwise OR's. I've never used them before so I was trying to understand what the code block meant.
Document doc = new Document("CleanupOptions.docx");
doc.MailMerge.CleanupOptions = MailMergeCleanupOptions.RemoveUnusedRegions |
MailMergeCleanupOptions.RemoveUnusedFields |
MailMergeCleanupOptions.RemoveContainingFields;
doc.MailMerge.ExecuteWithRegions(dataSet);
So in that block above, if I used doc.MailMerge.CleanupOptions, how would I pick any of the statements that the CleanupOptions are equal to? Or are they all combined?