回复 1楼czjczk的帖子
两个问题,在FpSpread中
1 支持缩小字体填充内容吗?
TextCellType 支持自定义CSS样式,使用方法如下:
- <head runat="server">
- <title>Untitled Page</title>
- <style type="text/css">
- .TextCellTypeCssClass
- {
- background-color: beige;
- border: solid 5px orange;
- vertical-align:top;
- }
- .TextCellCssClass
- {
- background-color:Black;
- color: Lime;
- border: dotted 5px blue;
- }
- </style>
- </head>
- FarPoint.Web.Spread.TextCellType test = new FarPoint.Web.Spread.TextCellType();
- test.ShowEditor = True;
- test.CssClass = "TextCellCssClass";
- test.CellCssClass = "TextCellTypeCssClass";
- FpSpread1.Sheets[0].Cells[0, 0].CellType = test;
- FpSpread1.Sheets[0].Cells[0, 0].Value = "Text Cell Type";
复制代码
如果CSS支持,那么 Spread 接可以实现。
2 支持自动填充内容吗?
请参考:http://gcdn.gcpowertools.com.cn/showtopic-2749.html |