在Notes 9.0.1中,如何在打开文档时默认显示标尺?

时间:2016-05-02 07:15:17

标签: lotus-notes lotus-formula

在IBM Notes 9.0.1中打开文档时,我似乎找不到显示标尺的方法。 我在@Command([ViewShowRuler])事件中使用了PostOpen,但它没有效果。 将命令放在一个按钮中,或者在PostRecalc中,可以正常工作。

我在帮助中读到此命令在EditMode中有效。默认情况下,表单在EditMode中打开,但是,我尝试了这个(在PostOpen中)没有任何有用的结果:

@Command([EditDocument]; "1"); @UpdateFormulaContext; @Command([ViewShowRuler])

任何想法或技巧如何使这项工作?

P.S。:在Notes 6.5中PostOpen中使用相同的命令效果很好;如预期的那样。

1 个答案:

答案 0 :(得分:1)

我这样做的方法是在富文本字段的输入事件中放入一些代码,我需要/想要使用标尺:

Sub Entering(Source As Field)
    Dim ws As New NotesUIWorkspace
    Dim uidoc As NotesUIDocument
    Set uidoc = ws.CurrentDocument
    uidoc.Ruler = True
End Sub