lmm1508561 你好,
1.目前没有 Office Menu 开发示例,不过具体问题可以提出,我们共同解决。
2.下面是问题 2 的设置和获取方法,方法不唯一:- //设置单元格样式
- FarPoint.Web.Spread.StyleInfo style = new FarPoint.Web.Spread.StyleInfo();
- style.BackColor = System.Drawing.Color.Red;
- this.FpSpread1.Sheets[0].SetStyleInfo(0, 0, style);
- //获取单元格样式
- FarPoint.Web.Spread.StyleInfo getStyle = this.FpSpread1.Sheets[0].GetStyleInfo(0, 0);
- //设置单元格类型
- FarPoint.Web.Spread.ButtonCellType buttonCellType = new FarPoint.Web.Spread.ButtonCellType();
- this.FpSpread1.Sheets[0].Cells[0, 2].CellType = buttonCellType;
- //获取单元格类型
- string cellType = this.FpSpread1.Sheets[0].Cells[0, 0].CellType.ToString();
- //设置公式
- this.FpSpread1.Sheets[0].Cells[0, 0].Text = "1";
- this.FpSpread1.Sheets[0].Cells[0, 1].Text = "1";
- this.FpSpread1.Sheets[0].Cells[0, 2].Formula = "SUM(A1:B1)";
- //获取公式
- string getFormula = this.FpSpread1.Sheets[0].Cells[0, 2].Formula;
复制代码 可以参考帮助文档中的代码片段,或者随机 Demo,路径为->rogram Files\GrapeCity\Spread.ASP.5.dotNet20\v5.0.2015\Samples |