如何区分“文档”用户在 Lotus Notes 中创建的文件夹数量?
我可以通过以下方式访问用户创建的文件夹:
NotesView folder = _notesDatabase.GetView(folderName);
NotesDocument folderDoc = folder.GetFirstDocument();
但问题是它可以包含“邮件”、“日历”和“待办事项”。
我无法区分它们。有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要按文档类型进行区分,通常可以在文档上使用“表单”字段值。因此,在获取文档句柄(NotesDocument 对象)后,使用 getItemValue 获取表单字段的值。例如:
To differentiate by document type, you can generally use the "form" field value on a document. So, after you get the document handle (the NotesDocument object), use getItemValue to get the value of the form field. For example:
NotesView 有 NotesView.IsFolder 和 NotesView.IsPrivate
IsPrivate-只读。指示条目是否特定于个人。
希望有帮助。欲了解更多信息,请访问
http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=/com.ibm.help.domino.designer85.doc/DOC/H_WHAT_S_NEW_IN_RNEXT_CHAP.html
并搜索 NotesView
Josh
The NotesView has a NotesView.IsFolder and NotesView.IsPrivate
IsPrivate- Read-only. Indicates whether an entry is specific to an individual.
Hope that helps. For more information goto
http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=/com.ibm.help.domino.designer85.doc/DOC/H_WHAT_S_NEW_IN_RNEXT_CHAP.html
and search for NotesView
Josh