namespace SharpVectors.Dom.Svg{
/// <summary>
/// Interface SvgTransformable contains properties and methods that apply to all elements which have attribute transform.
/// </summary>
/// <developer>niklas@protocol7.com</developer>
/// <completed>100</completed>
public interface ISvgTransformable : ISvgLocatable
{
ISvgAnimatedTransformList Transform{get;}
}
}
|