Beispiel #1
0
        public DotEdge SetArrowTail(IEnumerable <DotArrowType> values)
        {
            AttrValues.SetAttribute("arrowtail", DotArrowType.ConcatArrows(values.Take(4)).DoubleQuote());

            return(this);
        }
Beispiel #2
0
        public DotEdge SetArrowTail(DotArrowType value)
        {
            AttrValues.SetAttribute("arrowtail", value.Value);

            return(this);
        }
Beispiel #3
0
        public DotEdge SetArrowTail(params DotArrowType[] values)
        {
            AttrValues.SetAttribute("arrowtail", DotArrowType.ConcatArrows(values.Take(4)).DoubleQuote());

            return(this);
        }
Beispiel #4
0
        public DotEdge SetArrowHead(DotArrowType value)
        {
            AttrValues.SetAttribute("arrowhead", value.Value);

            return(this);
        }