ISvgBoundable.cs 273 Bytes
Newer Older
James Welle's avatar
James Welle committed
1
2
3
4
5
6
using System.Drawing;

namespace Svg
{
    public interface ISvgBoundable
    {
Tebjan Halm's avatar
Tebjan Halm committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
        PointF Location
        {
            get;
        }

        SizeF Size
        {
            get;
        }

        RectangleF Bounds
        {
            get;
        } 
James Welle's avatar
James Welle committed
21
22
    }
}