using System.ComponentModel;
using System.Drawing;
using System.Xml.Serialization;
using GeoSigma.SigmaDrawerStyle;
using GeoSigma.SigmaDrawerStyle.Converter;
using GeoSigmaDrawLib;
namespace SigmaDrawerElement
{
///
/// 组合图元
///
public class DrawerBlock : ElementBase
{
///
/// Initializes a new instance of the class.
///
public DrawerBlock()
{
ElementType = DrawElementType.ELEMENT_BLOCK;
}
///
/// 头部信息
///
public DrawerBlockHead Head { get; set; }
}
public class DrawerBlockScale
{
public double ScaleFactor { get; set; }
public double X { get; set; }
public double Y { get; set; }
}
///
/// 组合图元HEAD
///
public class DrawerBlockHead
{
///
/// 名称
///
public string Name { get; set; }
///
/// 图件范围
///
public RectangleD MapRange { get; set; }
}
}