Should I use "ExcludeFromView" or modify the user's Calendar view SelectionFormula?

Hello,

I have calendar documents that are programmatically generated and want the users to have the ability to suppress these items from their calendar views.

What would be best, use the “ExcludeFromView” document property, or modify the user’s Calendar view SelectionFormula to exclude documents with a particular category? For example:

g_oCalView.SelectionFormula = ‘SELECT @IsAvailable(CalendarDateTime) & Categories != “vCalSummary”’

Thanks.

Bill

Subject: You will have to modify the selection formula regardless

The standard Calendar View does not utilize the ExcludeFromView property, it merely shows anything that has a CalendarDateTime property.

Subject: Thanks, I should have realized that…