示例#1
0
        public DotSubGraph SetLabelJustification(DotJustification value)
        {
            AssertIsCluster();

            SetAttribute("labeljust", value.Value);

            return(this);
        }
示例#2
0
        public DotSubGraphDefaults SetLabelJustification(DotJustification value)
        {
            AttrValues.SetAttribute("labeljust", value.Value);

            return(this);
        }
示例#3
0
文件: DotGraph.cs 项目: phreed/GMac
 public DotGraph SetLabelJustification(DotJustification value)
 {
     return(SetAttribute("labeljust", value.Value));
 }