예제 #1
0
        public DotSubGraph SetLabelPosition(float x, float y, float z)
        {
            AssertIsCluster();

            SetAttribute("lp", DotUtils.ToDotPoint(x, y, z));

            return(this);
        }
예제 #2
0
        public DotSubGraph SetMargin(float x, float y)
        {
            AssertIsCluster();

            SetAttribute("margin", DotUtils.ToDotPoint(x, y));

            return(this);
        }
예제 #3
0
        public DotSubGraphDefaults SetMargin(float x, float y)
        {
            AttrValues.SetAttribute("margin", DotUtils.ToDotPoint(x, y));

            return(this);
        }
예제 #4
0
        public DotSubGraphDefaults SetLabelPosition(float x, float y, float z)
        {
            AttrValues.SetAttribute("lp", DotUtils.ToDotPoint(x, y, z));

            return(this);
        }
예제 #5
0
        public DotNode SetPosition(float x, float y, float z)
        {
            AttrValues.SetAttribute("pos", DotUtils.ToDotPoint(x, y, z));

            return(this);
        }
예제 #6
0
파일: DotGraph.cs 프로젝트: phreed/GMac
        public DotGraph SetSize(double x, double y, bool isDesiredSize)
        {
            var finalValue = DotUtils.ToDotPoint(x, y) + (isDesiredSize ? "!" : string.Empty);

            return(SetAttribute("size", finalValue.DoubleQuote()));
        }
예제 #7
0
파일: DotGraph.cs 프로젝트: phreed/GMac
 public DotGraph SetPage(float x, float y)
 {
     return(SetAttribute("page", DotUtils.ToDotPoint(x, y)));
 }
예제 #8
0
파일: DotEdge.cs 프로젝트: phreed/GMac
        public DotEdge SetTailLabelPosition(float x, float y, float z)
        {
            AttrValues.SetAttribute("tail_lp", DotUtils.ToDotPoint(x, y, z));

            return(this);
        }
예제 #9
0
파일: DotGraph.cs 프로젝트: phreed/GMac
 public DotGraph SetMargin(float x, float y)
 {
     return(SetAttribute("margin", DotUtils.ToDotPoint(x, y)));
 }
예제 #10
0
파일: DotGraph.cs 프로젝트: phreed/GMac
 public DotGraph SetMargin(double x, double y)
 {
     return(SetAttribute("margin", DotUtils.ToDotPoint(x, y)));
 }
예제 #11
0
파일: DotGraph.cs 프로젝트: phreed/GMac
 public DotGraph SetLabelPosition(double x, double y)
 {
     return(SetAttribute("lp", DotUtils.ToDotPoint(x, y)));
 }
예제 #12
0
파일: DotGraph.cs 프로젝트: phreed/GMac
 public DotGraph SetLabelPosition(float x, float y)
 {
     return(SetAttribute("lp", DotUtils.ToDotPoint(x, y)));
 }
예제 #13
0
파일: DotGraph.cs 프로젝트: phreed/GMac
 public DotGraph SetEdgeSeparationMargins(double x, double y)
 {
     return(SetAttribute("esep", DotUtils.ToDotPoint(x, y)));
 }
예제 #14
0
파일: DotEdge.cs 프로젝트: phreed/GMac
        public DotEdge SetHeadLabelPosition(float x, float y)
        {
            AttrValues.SetAttribute("head_lp", DotUtils.ToDotPoint(x, y));

            return(this);
        }
예제 #15
0
파일: DotGraph.cs 프로젝트: phreed/GMac
 public DotGraph SetPage(double x, double y)
 {
     return(SetAttribute("page", DotUtils.ToDotPoint(x, y)));
 }
예제 #16
0
파일: DotEdge.cs 프로젝트: phreed/GMac
        public DotEdge SetPosition(float x, float y)
        {
            AttrValues.SetAttribute("pos", DotUtils.ToDotPoint(x, y));

            return(this);
        }
예제 #17
0
파일: DotGraph.cs 프로젝트: phreed/GMac
 public DotGraph SetScale(float x, float y)
 {
     return(SetAttribute("scale", DotUtils.ToDotPoint(x, y)));
 }
예제 #18
0
        public DotNode SetMargin(float x, float y)
        {
            AttrValues.SetAttribute("margin", DotUtils.ToDotPoint(x, y));

            return(this);
        }
예제 #19
0
파일: DotGraph.cs 프로젝트: phreed/GMac
 public DotGraph SetScale(double x, double y)
 {
     return(SetAttribute("scale", DotUtils.ToDotPoint(x, y)));
 }
예제 #20
0
        public DotNode SetExternalLabelPosition(float x, float y, float z)
        {
            AttrValues.SetAttribute("xlp", DotUtils.ToDotPoint(x, y, z));

            return(this);
        }
예제 #21
0
파일: DotGraph.cs 프로젝트: phreed/GMac
        public DotGraph SetSize(double x, double y)
        {
            var finalValue = DotUtils.ToDotPoint(x, y);

            return(SetAttribute("size", finalValue.DoubleQuote()));
        }