EdgeLabelGraphics.cs

24 lines | 553 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using yEd.XGML.Enums;

namespace yEd.XGML.DocumentEntities.EdgeEntitie
{
    public class EdgeLabelGraphics
    {
        //text" type="S

        public int fontSize { set; get; } = 12;
        public EnumFont fontName { set; get; } = EnumFont.Dialog;

        public string configuration => "AutoFlippingLabel";
        public double contentWidth { set; get; }
        public double  contentHeight { set; get; }
        //model"/>
        //position"/>
    }
}