Click here to Skip to main content
15,891,841 members
Articles / Desktop Programming / WPF

WPF-Less GDI+.NET Report Component: Star Report

Rate me:
Please Sign up or sign in to vote.
5.00/5 (15 votes)
25 Jan 2013CPOL8 min read 46.4K   1.5K   42  
StarReport: WPF-less GDI+.NET report component.
using System;
using System.Drawing;
using System.ComponentModel;
using System.Runtime.Serialization;
using System.ComponentModel.Design.Serialization;


namespace UniverseReport
{
	/// <summary>
	/// Summary description for LineInfo.
	/// </summary>

	[TypeConverter(typeof(LineInfoTypeConverter))]
	[Serializable()]
	public class LineInfo
	{
        #region My Declarations
        private Color color = Color.Black;
        private int thickness = 1;

        private float x;
        private float y;
        private float x1;
        private float y1;

        private string name = "Line";

        private bool spanWidthOfPage = false; 
        #endregion

        #region Constructors
        public LineInfo()
        {

        }

        public LineInfo(float x, float y, float x1, float y1)
        {
            this.x = x;
            this.y = y;
            this.x1 = x1;
            this.y1 = y1;

        }

        public LineInfo(Color color, int thickness)
        {
            this.color = color;
            this.thickness = thickness;
        } 
        #endregion

        #region Properties
        [DefaultValue("Line")]
        public string Name
        {
            get { return name; }
            set { name = value; }
        }

        [DefaultValue(typeof(Color), "Black")]
        public Color Color
        {
            get { return color; }
            set { color = value; }
        }

        [DefaultValue(1)]
        public int Thickness
        {
            get { return thickness; }
            set { thickness = value; }

        }

        [DefaultValue(false)]
        public bool SpanWidthOfPage
        {
            get { return spanWidthOfPage; }
            set { spanWidthOfPage = value; }

        }

        [DefaultValue(0f)]
        public float X
        {
            get { return x; }
            set { x = value; }
        }

        [DefaultValue(0f)]
        public float Y
        {
            get { return y; }
            set { y = value; }
        }

        [DefaultValue(0f)]
        public float X1
        {
            get { return x1; }
            set { x1 = value; }
        }

        [DefaultValue(0f)]
        public float Y1
        {
            get { return y1; }
            set { y1 = value; }
        } 
        #endregion


	}
}

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
Software Developer (Senior) Finance Industry
United States United States
Currently pursuing 'Programming Nirvana' (The ineffable ultimate in which one has attained disinterested wisdom and compassion as it relates to programming)

Respected Technologies
1. Confusor (https://confuser.codeplex.com/)
2. Power Threading (http://www.wintellect.com/Resources/visit-the-power-threading-library)
3. EDI Parsers (http://www.rdpcrystal.com)


Acknowledgements:

Microsoft Certified Technologist for WPF and .Net 3.5 (MCTS)
Microsoft Certified Technologist for WCF and .Net 3.5 (MCTS)
Microsoft Certified Application Developer for .Net (MCAD)
Microsoft Certified Systems Engineer (MCSE)
Microsoft Certified Professional (MCP)

Sun Certified Developer for Java 2 Platform (SCD)
Sun Certified Programmer for Java 2 Platform (SCP)
Sun Certified Web Component Developer (SCWCD)

CompTIA A+ Certified Professional

Registered Business School Teacher for Computer Programming and Computer Applications (2004)
(University of the State of New York Education Department)

Graduated from University At Stony Brook

Comments and Discussions