C# aspose.cells 数据透视表设置行高
时间: 2023-12-13 18:33:52 浏览: 151
通过代码自定义cell,动态设置行高
根据提供的引用内容,Aspose.Cells可以通过设置行高来设置数据透视表的行高。以下是C#代码示例:
```csharp
// 获取数据透视表的行
PivotTable pivotTable = worksheet.PivotTables[0];
PivotTableStyle style = pivotTable.TableStyleType;
// 设置行高
pivotTable.RowFields[0].Height = 30;
```
在上面的代码中,我们首先了数据透视表的第一个行字段,然后将其高度设置为30。你可以根据需要更改高度值。
阅读全文