Skip to content
开发文档
能力中心
应用市场
WebOffice
开发者后台

FieldDescriptor.NumberFormat(属性)

说明

可读写

数字格式,可以设置日期/时间/数值等字段的显示数字格式 可以设置内置的格式

字段类型内建格式
货币'¥','$','"€"','£'

货币

显示结果内建格式
'¥''¥'
'$''$'
'€''\"€\"'
'£''£'

数值

显示结果内建格式
'1234''0_ '
'1234.1''0.0_ '
'1234.10 ''0.00_ '
'1234.100''0.000_ '
'1234.1000''0.0000_ '
'1,234''#,##0_ '
'1,234.1''#,##0.0_ '
'1,234.10''#,##0.00_ '
'1,234.100''#,##0.000_ '
'1,234.1000''#,##0.0000_ '

百分比

显示结果内建格式
'12%''0%'
'12.0%''0.0%'
'12.00% ''0.00%'
'12.000%''0.000%'
'12.0000%''0.0000%'

日期时间

显示结果内建格式
2023/04/18 10:09'yyyy/mm/dd h:mm'

返回值

String

浏览器环境示例

javascript
async function example() {
    await instance.ready();
    const app = instance.Application;
    const field = await app.Sheets(1).FieldDescriptors(2);
    await field.NumberFormat;
}

脚本编辑器 示例

javascript
function main() {
    const field = Application.Sheets(1).FieldDescriptors(2);
    field.NumberFormat = '0.0000%';
    field.Apply();
}
main();
回到旧版