回复 1楼oceansoft的帖子
目前产品不支持这个功能,能不能把您的实际使用场景告诉我,我看看是否可以给您提供解决方案。
我们产品有ShowCell/ShowRow/ShowColumn的功能,可以让滚动条滚动到想要的位置,不知道是否满足您的需求。
- private void button1_Click(object sender, RoutedEventArgs e)
- {
- //Uncomment a method to test
- //gcSpreadSheet1.Sheets[0].SetActiveCell(10, 7);
- //gcSpreadSheet1.ShowActiveCell(GrapeCity.Windows.SpreadSheet.UI.VerticalPosition.Bottom, GrapeCity.Windows.SpreadSheet.UI.HorizontalPosition.Left);
- //gcSpreadSheet1.ShowCell(0, 0, 20, 10, GrapeCity.Windows.SpreadSheet.UI.VerticalPosition.Bottom, GrapeCity.Windows.SpreadSheet.UI.HorizontalPosition.Right);
- //gcSpreadSheet1.ShowColumn(0, 10, GrapeCity.Windows.SpreadSheet.UI.HorizontalPosition.Nearest);
- gcSpreadSheet1.ShowRow(0, 50, GrapeCity.Windows.SpreadSheet.UI.VerticalPosition.Center);
- gcSpreadSheet1.Invalidate();
- }
复制代码 |