如何从“邮件”中过滤视图列表在莲花笔记中?
在一篇文章中:
如何使用 .NET 从 Lotus Notes 中的“邮件”获取视图列表? 我问的是获取视图列表。 我正在获取视图列表。但现在我想过滤它们。
因为我只想要收件箱、发件箱、草稿......等。 (包含邮件)。
In one of post:
How to get list of views from "mail" in Lotus Notes using .NET?
I was asking about getting list of view.
I am getting list of views.But now i want to filter them.
As i want only Inbox,Outbox,Draft..e.tc. (containing mails).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您迭代数据库中的所有视图(例如,使用 NotesDatabase 类的 Views 属性),那么一旦您拥有 NotesView 对象的句柄,您就可以使用:
或者,您可以使用 NotesDatabase 类的 GetView 方法来获取句柄到您关心的每个命名视图或文件夹。例如(在 VB 中):
If you iterate over all views in the database (using, say, the NotesDatabase class' Views property), then once you have a handle to a NotesView object, you can use:
Alternatively, you can use the NotesDatabase class' GetView method to get a handle to each named view or folder you care about. For example (in VB):