ISvgClipable.cs 475 Bytes
Newer Older
davescriven's avatar
davescriven committed
1
2
3
4
5
6
7
8
9
10
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Drawing.Drawing2D;

namespace Svg
{
    public interface ISvgClipable
    {
11
12
13
14
15
16
        /// <summary>
        /// Gets or sets the ID of the associated <see cref="SvgClipPath"/> if one has been specified.
        /// </summary>
        Uri ClipPath { get; set; }
        void SetClip(SvgRenderer renderer);
        void ResetClip(SvgRenderer renderer);
davescriven's avatar
davescriven committed
17
18
    }
}