CPF/CPF.ReoGrid/Drawing/IFloatingObject.cs

33 lines
440 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.Drawing;
namespace CPF.ReoGrid.Drawing
{
public interface IFloatingObject
{
Rect Bounds { get; set; }
float X { get; set; }
float Y { get; set; }
Point Location { get; set; }
float Left { get; }
float Right { get; }
float Top { get; }
float Bottom { get; }
Size Size { get; set; }
float Width { get; set; }
float Height { get; set; }
void OnBoundsChanged(Rect oldRect);
}
}