c# farpoint 单元格 的 文字内容有多少行
时间: 2023-11-27 12:52:37 浏览: 157
farpoint中文手册
可以使用 FarPoint.Win.Spread.CellType.MultilineText 类型的单元格来实现多行文本。如果想要获取该单元格的文本行数,可以使用以下代码:
```c#
int rowCount = 0;
FarPoint.Win.Spread.CellType.MultilineText cellType = (FarPoint.Win.Spread.CellType.MultilineText)fpSpread1.ActiveSheet.Cells[0, 0].CellType;
if (cellType != null)
{
rowCount = cellType.Text.Split('\n').Length;
}
```
其中,fpSpread1 是 FarPoint 控件的名称,[0, 0] 是单元格的行列索引。将上述代码中的 fpSpread1.ActiveSheet.Cells[0, 0] 替换为具体的单元格对象即可。
阅读全文