agrobot_base/Exemplos/SharpDX-master/Source/SharpDX.Direct2D1/SvgAttribute.cs

22 lines
450 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SharpDX.Direct2D1
{
public partial class SvgAttribute
{
/// <summary>
/// Clones an svg attribute
/// </summary>
/// <returns></returns>
public SvgAttribute Clone()
{
SvgAttribute svgAttribute;
Clone(out svgAttribute);
return svgAttribute;
}
}
}