SS.Ynote.Classic.Core.Project.ExTreeNode.ExTreeNode C# (CSharp) Method

ExTreeNode() public method

Default Constructor
public ExTreeNode ( string text, string name, ProjectNodeType projectNodeType ) : System.Windows.Forms
text string
name string
projectNodeType ProjectNodeType
return System.Windows.Forms
        public ExTreeNode(string text, string name,
            ProjectNodeType projectNodeType)
        {
            Text = text;
            Name = name;
            Type = projectNodeType;
            int i = 0;
            if (projectNodeType == ProjectNodeType.File)
                i = 1;
            ImageIndex = i;
            SelectedImageIndex = i;
        }
ExTreeNode