找回密码
 立即注册

QQ登录

只需一步,快速开始

X765321

银牌会员

31

主题

99

帖子

3742

积分

银牌会员

积分
3742

活字格认证

X765321
银牌会员   /  发表于:2012-6-7 15:12  /   查看:5188  /  回复:3
如题

3 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2012-6-7 17:35:00
沙发
回复 1楼X765321的帖子

判断方式如下:
后台:

  1. protected void Page_Load(object sender, EventArgs e)
  2.         {
  3.             if (!IsPostBack)
  4.             {
  5.                 FarPoint.Web.Spread.ButtonCellType buttonType=new FarPoint.Web.Spread.ButtonCellType();
  6.                 this.FpSpread1.Sheets[0].Columns[0].CellType = buttonType;
  7.             }
  8.         }
复制代码

前台:

  1.     <script type="text/javascript">
  2.         window.onload = function () {
  3.                 alert(FpSpread1.Cells(0, 0).CellType2);
  4.                 alert(FpSpread1.Cells(0, 1).FpCellType);
  5.         }
  6.     </script>
复制代码
回复 使用道具 举报
X765321
银牌会员   /  发表于:2012-6-8 12:59:00
板凳
:coffee
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2012-6-8 14:44:00
地板
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部