Skip to main content

setTextBox 设置文本框

setTextBox

类型: MethodDeclaration

所属类: CommandFunctionList

定义位置: command.ts

描述

设置文本框

参数

参数名类型描述默认值
\{element, properties\}`{
element: ElementGetter
properties: Array<{key: string, value: any}>
}`--

返回值

类型: CommandFunction

源代码

位置: 第 4409 行

protected setTextBox({element, properties}: {
element: ElementGetter
properties: Array<{key: string, value: any}>
}): CommandFunction {
const getElement = Command.compileElement(element)
for (const property of properties) {
switch (property.key) {
case 'text':
if (typeof property.value === 'object') {
property.value = Command.compileString(property.value)
}
continue
case 'number':
case 'min':
case 'max':
if (typeof property.value === 'object') {
property.value = Command.compileNumber(property.value)
}
continue
}
}
return () => {
const element = getElement()
if (element instanceof TextBoxElement) {
for (let {key, value} of properties) {
if (typeof value === 'function') {
value = value()
}
// @ts-ignore
element[key] = value
}
}
return true
}
}

文档生成时间:2025/7/7 12:07:06