33 lines
440 B
C#
33 lines
440 B
C#
![]() |
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);
|
|||
|
}
|
|||
|
}
|