GroupsNodeGraphics.cs
Home
/
YED /
yEd.XGML /
DocumentEntities /
GroupNodeEntitie /
GroupsNodeGraphics.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using yEd.XGML.Enums;
namespace yEd.XGML.DocumentEntities.GroupNodeEntitie
{
public class GroupsNodeGraphics
{
public double x { set; get; }
public double y { set; get; }
public double w { set; get; } = 50;
public double h { set; get; } = 50;
public EnumNodeType type { set; get; } = EnumNodeType.rectangle;
public Color fill { set; get; } = ColorTranslator.FromHtml("#F2F0D8");
public Color outline { set; get; } = ColorTranslator.FromHtml("#000000");
public double topBorderInset { set; get; }
public double bottomBorderInset { set; get; }
public double leftBorderInset { set; get; }
public double rightBorderInset { set; get; }
}
}