gpt4 book ai didi

LotusScript 中的复选框

转载 作者:行者123 更新时间:2023-12-02 09:34:57 25 4
gpt4 key购买 nike

我有一个复选框类型的字段,它有很多值。有没有办法检查是否检查了特定值?就像我们在Javascript中“检查”方法一样,LotusScript中是否也有类似的方法?

最佳答案

复选框只是文档中的项目。要获取“已检查”值,您只需从文档中读取它即可。

如果您的复选框字段名为 MyCheckbox,那么表单中按钮中的这段代码将为您提供一个包含所有值的数组:

Dim ws as New NotesUIWorkspace
Dim uidoc as NotesUIDocument
Dim doc as NotesDocument
Dim varValues as Variant

Set uidoc = ws.currentDocument
Set doc = uidoc.Document

varValues = doc.GetItemValue( "MyCheckBox" )
If not isnull( arraygetindex( varValues, "A" ) ) then
'do whatever you want if "A" is selected
Else
'do something else
End If
If not isnull( arraygetindex( varValues, "B" ) ) then
'do whatever you want if "B" is selected
End If
If not isnull( arraygetindex( varValues, "C" ) ) then
'do whatever you want if "C" is selected
End If

关于LotusScript 中的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27401307/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com