设置 TextOrientation
FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType();
textCellType1.TextOrientation = FarPoint.Win.TextOrientation.TextTopDown;
this.fpSpread1_Sheet1.Cells.Get(4, 5).CellType = textCellType1;
this.fpSpread1_Sheet1.Cells.Get(4, 5).Value = "自顶向下"; |