LotusScript - 是否可以在视图中的文档附近创建复选标记?
LotusScript - Is it possible to create check mark near document in view?
是否可以通过在视图中使用 LotusScript 或 @-formulas 在所选文档附近生成复选标记:
我已经试过了:
Dim session As New NotesSession
Set db = session.CurrentDatabase
Set docByUi = uiDoc.Document
Set uiView = ws.CurrentView
If docByUi.selectedCreatorsIDs(0) <> "" Then
Forall docID In docByUi.selectedCreatorsIDs
Call uiView.SelectDocument(db.Getdocumentbyunid(docID))
End Forall
'Call ws .ViewRefresh
End If
它正在运行,我正在选择我想要的所有文档,但未显示左侧面板中的复选标记。
有办法吗?
谢谢。
您可以创建类型为 "Select documents in view" 的公式代理,并添加一个 SELECT 公式,该公式 returns 对要在视图中选中并带有复选标记的文档为真。
是否可以通过在视图中使用 LotusScript 或 @-formulas 在所选文档附近生成复选标记:
我已经试过了:
Dim session As New NotesSession
Set db = session.CurrentDatabase
Set docByUi = uiDoc.Document
Set uiView = ws.CurrentView
If docByUi.selectedCreatorsIDs(0) <> "" Then
Forall docID In docByUi.selectedCreatorsIDs
Call uiView.SelectDocument(db.Getdocumentbyunid(docID))
End Forall
'Call ws .ViewRefresh
End If
它正在运行,我正在选择我想要的所有文档,但未显示左侧面板中的复选标记。
有办法吗?
谢谢。
您可以创建类型为 "Select documents in view" 的公式代理,并添加一个 SELECT 公式,该公式 returns 对要在视图中选中并带有复选标记的文档为真。