namespace GeoSigma.SigmaDrawerStyle
{
using System.ComponentModel;
using System.Xml.Serialization;
///
/// Defines the .
///
[XmlRoot("ArrowTail")]
public class CurveArrowTail : CurveView
{
///
/// Initializes a new instance of the class.
///
public CurveArrowTail()
{
TypeName = "尾箭头";
}
///
/// Defines the height.
///
private double height = 35;
///
/// Gets or sets the Height.
///
[XmlAttribute("Height")]
[Category("基本属性"), DisplayName("高度")]
[TypeConverter(typeof(PropertyDoubleConverter))]
public double Height { get => height; set => height = value; }
}
}