回复 1楼senyugo的帖子
问题1:排序,试试
- fpSpread1.ActiveSheet.AutoSortColumn(0);
- FarPoint.Win.Spread.Column col;
- col = fpSpread1.ActiveSheet.Columns[0];
- fpSpread1.ActiveSheet.Cells[0, 0].Text = "Alignment";
- fpSpread1.ActiveSheet.Cells[1, 0].Text = "CarbAdjust";
- fpSpread1.ActiveSheet.Cells[2, 0].Text = "Brakes";
- col.SortIndicator = FarPoint.Win.Spread.Model.SortIndicator.Descending;
- col.ShowSortIndicator = true;
- col.AllowAutoSort = true;
复制代码
问题2:锁住单元格,不能编辑,用 cell.Locked = true 试试。
备注:
建议一个主题帖子一个问题,这样便于知识传播和分享。
另外,发2个主题帖子您也可多得积分的。 |