刷新数据透视表时指定数据透视表是否兼容Excel2003
Contents
[
Hide
]
Aspose.Cells 提供了数据透视表.IsExcel2003Compatible刷新数据透视表时可用于指定数据透视表是否与 Excel2003 兼容的属性。如果真的 字符串必须小于或等于 255 个字符,因此如果字符串大于 255 个字符,它将被截断。如果错误的,字符串不会有上述限制。默认值为真的.
刷新数据透视表时指定数据透视表是否兼容Excel2003
下面的示例代码解释了数据透视表.IsExcel2003Compatible财产。原始字符串的长度为 383 个字符。但当数据透视表.IsExcel2003Compatible属性设置为真的数据透视表刷新后,数据透视表B5单元格的数据被截断,变成255个字符长。然而,当数据透视表.IsExcel2003Compatible属性已设置错误的再次刷新数据透视表,数据透视表B5单元格的数据没有被截断,仍然是383个字符长。请下载示例 excel 文件在此代码中使用,输出excel文件由它生成及其控制台输出供您参考。另请阅读代码中的注释,以便更好地理解此属性。
控制台输出
这是使用给定的执行时上述示例代码的控制台输出示例 excel 文件.
Length of original data string: 383
Length of cell B5 after setting IsExcel2003Compatible property to True: 255
Length of cell B5 after setting IsExcel2003Compatible property to False: 383