ExcelScript.FormatProtection interface
表示对范围对象的格式保护。
方法
get |
指定 Excel 是否隐藏区域中单元格的公式。 值 |
get |
指定 Excel 是否锁定对象中的单元格。 值 |
set |
指定 Excel 是否隐藏区域中单元格的公式。 值 |
set |
指定 Excel 是否锁定对象中的单元格。 值 |
方法详细信息
getFormulaHidden()
指定 Excel 是否隐藏区域中单元格的公式。 值 null
指示整个区域没有隐藏统一公式设置。
getFormulaHidden(): boolean;
返回
boolean
getLocked()
指定 Excel 是否锁定对象中的单元格。 值 null
指示整个范围没有统一锁设置。
getLocked(): boolean;
返回
boolean
setFormulaHidden(formulaHidden)
指定 Excel 是否隐藏区域中单元格的公式。 值 null
指示整个区域没有隐藏统一公式设置。
setFormulaHidden(formulaHidden: boolean): void;
参数
- formulaHidden
-
boolean
返回
void
setLocked(locked)
指定 Excel 是否锁定对象中的单元格。 值 null
指示整个范围没有统一锁设置。
setLocked(locked: boolean): void;
参数
- locked
-
boolean
返回
void