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

22 lines
450 B
C#
Raw Normal View History

2023-08-31 11:50:53 +00:00
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;
}
}
}