GroupNodeLabelGraphics.cs

25 lines | 695 B Blame History Raw Download
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 GroupNodeLabelGraphics
    {
        public string text { set; get; }
        public Color fill { set; get; } = ColorTranslator.FromHtml("#B7B69E");
        public int fontSize { set; get; } = 15;
        public EnumFont fontName { set; get; } = EnumFont.Dialog;
        public string alignment => "right";
        public string autoSizePolicy => "node_width";
        public string anchor => "t";
        public double borderDistance { set; get; }
    }
}