| WinForms | Silverlight/WPF | Comments |
|---|---|---|
| BeginUpdate() // perform updates EndUpdate() |
using (Rows.DeferNotifications()) { // perform updates } |
|
| FindRow(…) | Not supported (very easy to do using code) | |
| FinishEditing(bool cancel) | FinishEditing(bool cancel) | |
| LoadExcel(string file) | Not supported (in the to-do list) | |
| SaveExcel(string file) | Not supported (in the to-do list) | |
| Select(int row, int col, bool scrollIntoView) | Select(int row, int col, bool scrollIntoView) | |
| ShowCell(int row, int col) | ScrollIntoView | |
| Sort(order, int col, int col2) | Not supported (should do at data source level) | |
| StartEditing(row, col) | StartEditing(bool fullEdit, row, col) | The ‘fullEdit’ parameter determines whether the user can exit edit mode using the arrow keys. |