ExcelScript.WorksheetCustomProperty interface
表示工作表级别的自定义属性。
方法
delete() | 删除 custom property 对象。 |
get |
获取 customProperty 的键。 自定义属性键不区分大小写。 键限制为 255 个字符, (较大的值将导致 |
get |
获取或设置自定义属性的值。 |
set |
获取或设置自定义属性的值。 |
方法详细信息
delete()
删除 custom property 对象。
delete(): void;
返回
void
getKey()
获取 customProperty 的键。 自定义属性键不区分大小写。 键限制为 255 个字符, (较大的值将导致 InvalidArgument
引发错误。)
getKey(): string;
返回
string
getValue()
获取或设置自定义属性的值。
getValue(): string;
返回
string
setValue(value)
获取或设置自定义属性的值。
setValue(value: string): void;
参数
- value
-
string
返回
void