//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace GeoSigma.SigmaDrawerStyle
{
using System.ComponentModel;
using System.Xml.Serialization;
///
/// Defines the .
///
[XmlRoot("ArrowHead")]
public class CurveArrowHead : CurveView
{
///
/// Initializes a new instance of the class.
///
public CurveArrowHead()
{
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; }
}
}