-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathIFastGridModel.cs
31 lines (27 loc) · 1.1 KB
/
IFastGridModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FastWpfGrid
{
public interface IFastGridModel
{
int ColumnCount { get; }
int RowCount { get; }
IFastGridCell GetCell(IFastGridView grid, int row, int column);
IFastGridCell GetRowHeader(IFastGridView view, int row);
IFastGridCell GetColumnHeader(IFastGridView view, int column);
IFastGridCell GetGridHeader(IFastGridView view);
void AttachView(IFastGridView view);
void DetachView(IFastGridView view);
void HandleCommand(IFastGridView view, FastGridCellAddress address, object commandParameter, ref bool handled);
HashSet<int> GetHiddenColumns(IFastGridView view);
HashSet<int> GetFrozenColumns(IFastGridView view);
HashSet<int> GetHiddenRows(IFastGridView view);
HashSet<int> GetFrozenRows(IFastGridView view);
void HandleSelectionCommand(IFastGridView view, string command);
int? SelectedRowCountLimit { get; }
int? SelectedColumnCountLimit { get; }
}
}