Exemple #1
0
 public void OnSheetSelectionChanged(SheetSelection sheetselection)
 {
     if (SheetSelectionChanged != null)
     {
         SheetSelectionChanged(sheetselection);
     }
 }
Exemple #2
0
        private void Constructor()
        {
            CursorChanged += HandleParentCursorChanged;

            // Disable parent selection model
            Selection.Mode = SelectionMode.None;

            // Implementation of own selection model
            SheetSelection   = new SheetSelection(this);
            HeadersClickable = true;
            //FocusLineWidth = 0; // TODO does not work. find some other way to hide the dotted "focused cells" line
        }
Exemple #3
0
 private void Constructor()
 {
     SheetSelection   = new SheetSelection(this);
     HeadersClickable = true;
     //FocusLineWidth = 0; // TODO does not work. find some other way to hide the dotted "focused cells" line
 }