author | sl |
Thu, 01 Jan 2015 23:35:49 +0100 | |
changeset 405 | 5715aefd2bcc |
permissions | -rw-r--r-- |
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 using System.Drawing;
6 namespace Aga.Controls.Tree
7 {
8 internal interface IRowLayout
9 {
10 int PreferredRowHeight
11 {
12 get;
13 set;
14 }
16 int PageRowCount
17 {
18 get;
19 }
21 int CurrentPageSize
22 {
23 get;
24 }
26 Rectangle GetRowBounds(int rowNo);
28 int GetRowAt(Point point);
30 int GetFirstRow(int lastPageRow);
32 void ClearCache();
33 }
34 }