Exemplo n.º 1
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public GraphvizEdge()
 {
     m_Url=null;
     m_HeadArrow=null;
     m_TailArrow=null;
     m_StrokeColor=Color.Black;
     m_Comment=null;
     m_IsConstrained=true;
     m_IsDecorated=false;
     m_Dir=GraphvizEdgeDirection.Forward;
     m_Font=null;
     m_FontColor=Color.Black;
     m_Head=new GraphvizEdgeExtremity(true);
     m_Tail=new GraphvizEdgeExtremity(false);
     m_Label=new GraphvizEdgeLabel();
     m_Layer=null;
     m_MinLength=1;
     m_Style=GraphvizEdgeStyle.Unspecified;
     m_ToolTip=null;
     m_Weight=1;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public GraphvizEdge()
 {
     m_Url           = null;
     m_HeadArrow     = null;
     m_TailArrow     = null;
     m_StrokeColor   = Color.Black;
     m_Comment       = null;
     m_IsConstrained = true;
     m_IsDecorated   = false;
     m_Dir           = GraphvizEdgeDirection.Forward;
     m_Font          = null;
     m_FontColor     = Color.Black;
     m_Head          = new GraphvizEdgeExtremity(true);
     m_Tail          = new GraphvizEdgeExtremity(false);
     m_Label         = new GraphvizEdgeLabel();
     m_Layer         = null;
     m_MinLength     = 1;
     m_Style         = GraphvizEdgeStyle.Unspecified;
     m_ToolTip       = null;
     m_Weight        = 1;
 }