Пример #1
0
        /// <summary>
        /// Default constructor
        /// </summary>
        public GraphvizVertex()
        {
            m_Font        = null;
            m_Shape       = GraphvizVertexShape.Unspecified;
            m_FixedSize   = false;
            m_Size        = new SizeF(0, 0);
            m_Label       = null;
            m_Style       = GraphvizVertexStyle.Unspecified;
            m_Regular     = false;
            m_Url         = null;
            m_ToolTip     = null;
            m_StrokeColor = Color.Black;
            m_FillColor   = Color.White;
            m_FontColor   = Color.Black;
            m_Comment     = null;
            m_Group       = null;
            m_Layer       = null;
            m_Orientation = 0;
            m_Peripheries = -1;
            m_Z           = -1;

            m_Sides      = 4;
            m_Skew       = 0.0;
            m_Distorsion = 0.0;

            m_TopLabel    = null;
            m_BottomLabel = null;
        }
Пример #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;
 }
Пример #3
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;
 }
Пример #4
0
        /// <summary>
        /// Default constructor
        /// </summary>
        public GraphvizVertex()
        {
            m_Font = null;
            m_Shape = GraphvizVertexShape.Unspecified;
            m_FixedSize=false;
            m_Size=new SizeF(0,0);
            m_Label = null;
            m_Style = GraphvizVertexStyle.Unspecified;
            m_Regular = false;
            m_Url = null;
            m_ToolTip = null;
            m_StrokeColor = Color.Black;
            m_FillColor = Color.White;
            m_FontColor = Color.Black;
            m_Comment = null;
            m_Group = null;
            m_Layer = null;
            m_Orientation = 0;
            m_Peripheries = -1;
            m_Z = -1;

            m_Sides = 4;
            m_Skew = 0.0;
            m_Distorsion = 0.0;

            m_TopLabel = null;
            m_BottomLabel = null;
        }