Click here to Skip to main content
15,885,799 members
Articles / Programming Languages / C#

Hierarchical Tree

Rate me:
Please Sign up or sign in to vote.
3.25/5 (7 votes)
24 Dec 2008CPOL1 min read 61.5K   3K   42  
Updated version of the wonderful and sleek "Tree Chart Generator" written by Rotem Sapir
#region Copyright � 2007 Rotem Sapir
/*
 * This software is provided 'as-is', without any express or implied warranty.
 * In no event will the authors be held liable for any damages arising from the
 * use of this software.
 *
 * Permission is granted to anyone to use this software for any purpose,
 * including commercial applications, subject to the following restrictions:
 *
 * 1. The origin of this software must not be misrepresented; you must not claim
 * that you wrote the original software. If you use this software in a product,
 * an acknowledgment in the product documentation is required, as shown here:
 *
 * Portions Copyright � 2007 Rotem Sapir
 *
 * 2. No substantial portion of the source code of this library may be redistributed
 * without the express written permission of the copyright holders, where
 * "substantial" is defined as enough code to be recognizably from this library.
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;

namespace HierarchicalTree
{
    public class Box
    {
        public int Width;
        public int Height;
        public System.Drawing.Color LineColor;
        public int LineWidth;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions