Files
CarlMonitor/LibreHardwareMonitor-0.9.4/Aga.Controls/Tree/IRowLayout.cs
2025-04-07 07:44:27 -07:00

35 lines
410 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace Aga.Controls.Tree
{
internal interface IRowLayout
{
int PreferredRowHeight
{
get;
set;
}
int PageRowCount
{
get;
}
int CurrentPageSize
{
get;
}
Rectangle GetRowBounds(int rowNo);
int GetRowAt(Point point);
int GetFirstRow(int lastPageRow);
void ClearCache();
}
}