spread中的text框怎么做到和外框不一样大
spread中的text框怎么做到和外框不一样大参照下面图片
图片中上图是需要做到的格式,
下图是现在做出来的效果 回复 1楼jd6061的帖子
你好,
后台代码:
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack)
{
return;
}
FarPoint.Web.Spread.TextCellType tc = new FarPoint.Web.Spread.TextCellType();
tc.ShowEditor = true;
tc.EditorCssClass = "test";
this.FpSpread1.ActiveSheetView.Cells.CellType = tc;
}
前台代码:
<style type="text/css">
.test {
width:10px!important;
background-color:red;
}
</style>
谢谢版主,问题解决了。 回复 3楼jd6061的帖子
好的,不客气
为了给你提供更优质的服务,请对本次服务进行评分。我们会认真对待你提出的宝贵意见,谢谢
http://gcdn.gcpowertools.com.cn/attachment.aspx?attachmentid=10062
页:
[1]