jd6061 发表于 2015-7-16 10:32:00

spread中的text框怎么做到和外框不一样大

spread中的text框怎么做到和外框不一样大
参照下面图片


图片中上图是需要做到的格式,
下图是现在做出来的效果

iceman 发表于 2015-7-16 15:03:00

回复 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>

jd6061 发表于 2015-7-16 15:24:00

谢谢版主,问题解决了。

iceman 发表于 2015-7-16 16:46:00

回复 3楼jd6061的帖子

好的,不客气

为了给你提供更优质的服务,请对本次服务进行评分。我们会认真对待你提出的宝贵意见,谢谢   
http://gcdn.gcpowertools.com.cn/attachment.aspx?attachmentid=10062
页: [1]
查看完整版本: spread中的text框怎么做到和外框不一样大