25 lines
442 B
C#
25 lines
442 B
C#
using System;
|
|
using CPF.Drawing;
|
|
using CPF.ReoGrid.Interaction;
|
|
using CPF.ReoGrid.Rendering;
|
|
|
|
namespace CPF.ReoGrid.Drawing
|
|
{
|
|
public interface IDrawingObject : IFloatingObject, IUserVisual
|
|
{
|
|
Rect ClientBounds { get; }
|
|
|
|
float ScaleX { get; set; }
|
|
|
|
float ScaleY { get; set; }
|
|
|
|
float RotateAngle { get; set; }
|
|
|
|
IDrawingContainer Container { get; set; }
|
|
|
|
IDrawingObjectStyle Style { get; }
|
|
|
|
void Draw(RDrawingContext dc);
|
|
}
|
|
}
|