Example #1
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="X1">X1 position in the PDF document</param>
 /// <param name="Y1">Y1 position in the PDF document</param>
 public lineElement(int X, int Y, int X1, int Y1)
 {
     _coordX    = X;
     _coordY    = Y;
     _coordX1   = X1;
     _coordY1   = Y1;
     _lineStyle = new pdfLineStyle(1, predefinedLineStyle.csNormal);
 }
Example #2
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="X1">X1 position in the PDF document</param>
 /// <param name="Y1">Y1 position in the PDF document</param>		
 /// <param name="newStyle">Line's style</param>
 public lineElement(int X, int Y, int X1, int Y1, predefinedLineStyle newStyle)
 {
     _coordX = X;
     _coordY = Y;
     _coordX1 = X1;
     _coordY1 = Y1;
     _lineStyle = new pdfLineStyle(newStyle);
 }
Example #3
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="X1">X1 position in the PDF document</param>
 /// <param name="Y1">Y1 position in the PDF document</param>
 /// <param name="newWidth">Line's size</param>
 /// /// <param name="newStyle">Line's style</param>
 public lineElement(int X, int Y, int X1, int Y1, int newWidth, predefinedLineStyle newStyle)
 {
     _coordX    = X;
     _coordY    = Y;
     _coordX1   = X1;
     _coordY1   = Y1;
     _lineStyle = new pdfLineStyle(newWidth, newStyle);
 }
Example #4
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="X1">X1 position in the PDF document</param>
 /// <param name="Y1">Y1 position in the PDF document</param>
 /// <param name="newWidth">Line's size</param>
 public lineElement(int X, int Y, int X1, int Y1, int newWidth)
 {
     _coordX = X;
     _coordY = Y;
     _coordX1 = X1;
     _coordY1 = Y1;
     _lineStyle = new pdfLineStyle(newWidth,predefinedLineStyle.csNormal);
 }
Example #5
0
 /// <summary>
 /// Class's constructor [DEPRECATED]
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="Ray">Ray of the circle</param>
 /// <param name="strokeColor">Color of circle's border</param>
 /// <param name="fillColor">Color of the circle</param>
 /// <param name="newStyle">Border's style</param>
 public circleElement(int X, int Y, int Ray, predefinedColor strokeColor, predefinedColor fillColor, predefinedLineStyle newStyle)
 {
     _coordX      = X;
     _coordY      = Y;
     _ray         = Ray;
     _strokeColor = new pdfColor(strokeColor);
     _fillColor   = new pdfColor(fillColor);
     _lineStyle   = new pdfLineStyle(1, newStyle);
 }
Example #6
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="X1">X1 position in the PDF document</param>
 /// <param name="Y1">Y1 position in the PDF document</param>
 /// <param name="newWidth">Line's size</param>
 /// <param name="newStyle">Line's style</param>
 /// <param name="newColor">Line's color</param>
 public lineElement(int X, int Y, int X1, int Y1, int newWidth, predefinedLineStyle newStyle, predefinedColor newColor)
 {
     _coordX      = X;
     _coordY      = Y;
     _coordX1     = X1;
     _coordY1     = Y1;
     _strokeColor = new pdfColor(newColor);
     _lineStyle   = new pdfLineStyle(newWidth, newStyle);
 }
Example #7
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="X1">X1 position in the PDF document</param>
 /// <param name="Y1">Y1 position in the PDF document</param>
 /// <param name="newColor">Line's color</param>
 public lineElement(int X, int Y, int X1, int Y1, predefinedColor newColor)
 {
     _coordX      = X;
     _coordY      = Y;
     _coordX1     = X1;
     _coordY1     = Y1;
     _strokeColor = new pdfColor(newColor);
     _lineStyle   = new pdfLineStyle(1, predefinedLineStyle.csNormal);
 }
Example #8
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="Ray">Ray of the circle</param>
 /// <param name="strokeColor">Color of circle's border</param>
 /// <param name="fillColor">Color of the circle</param>
 /// <param name="newStyle">Border's style</param>
 public circleElement(int X, int Y, int Ray, predefinedColor strokeColor, predefinedColor fillColor, predefinedLineStyle newStyle)
 {
     _coordX = X;
     _coordY = Y;
     _ray = Ray;
     _strokeColor = new pdfColor(strokeColor);
     _fillColor = new pdfColor(fillColor);
     _lineStyle = new pdfLineStyle(1, newStyle);
 }
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="Ray">Ray of the circle</param>
 /// <param name="strokeColor">Color of circle's border</param>
 /// <param name="fillColor">Color of the circle</param>
 public circleElement(int X, int Y, int Ray, pdfColor strokeColor, pdfColor fillColor)
 {
     _coordX = X;
     _coordY = Y;
     _ray = Ray;
     _strokeColor = strokeColor;
     _fillColor = fillColor;
     _lineStyle = new pdfLineStyle(1, predefinedLineStyle.csNormal);
 }
Example #10
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="Ray">Ray of the circle</param>
 /// <param name="strokeColor">Color of circle's border</param>
 /// <param name="fillColor">Color of the circle</param>
 /// <param name="newWidth">Border's size</param>
 public circleElement(int X, int Y, int Ray, predefinedColor strokeColor, predefinedColor fillColor, int newWidth)
 {
     _coordX = X;
     _coordY = Y;
     _ray = Ray;
     _strokeColor = new pdfColor(strokeColor);
     _fillColor = new pdfColor(fillColor);
     _lineStyle = new pdfLineStyle(newWidth, predefinedLineStyle.csNormal);
 }
Example #11
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="Ray">Ray of the circle</param>
 /// <param name="strokeColor">Color of circle's border</param>
 /// <param name="fillColor">Color of the circle</param>
 /// <param name="newWidth">Border's size</param>
 public circleElement(int X, int Y, int Ray, pdfColor strokeColor, pdfColor fillColor, int newWidth)
 {
     _coordX      = X;
     _coordY      = Y;
     _ray         = Ray;
     _strokeColor = strokeColor;
     _fillColor   = fillColor;
     _lineStyle   = new pdfLineStyle(newWidth, predefinedLineStyle.csNormal);
 }
Example #12
0
 /// <summary>
 /// Method that adds a rectangle to the page object
 /// </summary>
 /// <param name="X">X position of the rectangle in the page</param>
 /// <param name="Y">Y position of the rectangle in the page</param>
 /// <param name="X1">X1 position of the rectangle in the page</param>
 /// <param name="Y1">Y1 position of the rectangle in the page</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Rectancle's color</param>
 /// <param name="newStyle">Border's style</param>
 public rectangleElement(int X, int Y, int X1, int Y1, pdfColor strokeColor, pdfColor fillColor, predefinedLineStyle newStyle)
 {
     _coordX      = X;
     _coordY      = Y;
     _coordX1     = X1;
     _coordY1     = Y1;
     _strokeColor = strokeColor;
     _fillColor   = fillColor;
     _lineStyle   = new pdfLineStyle(1, newStyle);
 }
Example #13
0
 /// <summary>
 /// Method that adds a rectangle to the page object [DEPRECATED]
 /// </summary>
 /// <param name="X">X position of the rectangle in the page</param>
 /// <param name="Y">Y position of the rectangle in the page</param>
 /// <param name="X1">X1 position of the rectangle in the page</param>
 /// <param name="Y1">Y1 position of the rectangle in the page</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Rectancle's color</param>
 /// <param name="newWidth">Border's width</param>
 /// <param name="newStyle">Border's style</param>
 public rectangleElement(int X, int Y, int X1, int Y1, predefinedColor strokeColor, predefinedColor fillColor, int newWidth, predefinedLineStyle newStyle)
 {
     _coordX      = X;
     _coordY      = Y;
     _coordX1     = X1;
     _coordY1     = Y1;
     _strokeColor = new pdfColor(strokeColor);
     _fillColor   = new pdfColor(fillColor);
     _lineStyle   = new pdfLineStyle(newWidth, newStyle);
 }
Example #14
0
 /// <summary>
 /// Method that adds a rectangle to the page object
 /// </summary>
 /// <param name="X">X position of the rectangle in the page</param>
 /// <param name="Y">Y position of the rectangle in the page</param>
 /// <param name="X1">X1 position of the rectangle in the page</param>
 /// <param name="Y1">Y1 position of the rectangle in the page</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Rectancle's color</param>
 /// <param name="newStyle">Border's style</param>
 public rectangleElement(int X, int Y, int X1, int Y1, predefinedColor strokeColor, predefinedColor fillColor, predefinedLineStyle newStyle)
 {
     _coordX = X;
     _coordY = Y;
     _coordX1 = X1;
     _coordY1 = Y1;
     _strokeColor = new pdfColor(strokeColor);
     _fillColor = new pdfColor(fillColor);
     _lineStyle = new pdfLineStyle(1, newStyle);
 }
Example #15
0
 /// <summary>
 /// Method that adds a rectangle to the page object
 /// </summary>
 /// <param name="X">X position of the rectangle in the page</param>
 /// <param name="Y">Y position of the rectangle in the page</param>
 /// <param name="X1">X1 position of the rectangle in the page</param>
 /// <param name="Y1">Y1 position of the rectangle in the page</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Rectancle's color</param>
 /// <param name="newWidth">Border's width</param>
 public rectangleElement(int X, int Y, int X1, int Y1, predefinedColor strokeColor, predefinedColor fillColor, int newWidth)
 {
     _coordX = X;
     _coordY = Y;
     _coordX1 = X1;
     _coordY1 = Y1;
     _strokeColor = new pdfColor(strokeColor);
     _fillColor = new pdfColor(fillColor);
     _lineStyle = new pdfLineStyle(newWidth, predefinedLineStyle.csNormal);
 }
Example #16
0
 /// <summary>
 /// Class's constructor [DEPRECATED]
 /// </summary>
 /// <param name="X">X position of the rectangle in the page</param>
 /// <param name="Y">Y position of the rectangle in the page</param>
 /// <param name="X1">X1 position of the rectangle in the page</param>
 /// <param name="Y1">Y1 position of the rectangle in the page</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Rectancle's color</param>
 public rectangleElement(int X, int Y, int X1, int Y1, predefinedColor strokeColor, predefinedColor fillColor)
 {
     _coordX      = X;
     _coordY      = Y;
     _coordX1     = X1;
     _coordY1     = Y1;
     _strokeColor = new pdfColor(strokeColor);
     _fillColor   = new pdfColor(fillColor);
     _lineStyle   = new pdfLineStyle(1, predefinedLineStyle.csNormal);
 }
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position of the rectangle in the page</param>
 /// <param name="Y">Y position of the rectangle in the page</param>
 /// <param name="X1">X1 position of the rectangle in the page</param>
 /// <param name="Y1">Y1 position of the rectangle in the page</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Rectancle's color</param>
 public rectangleElement(int X, int Y, int X1, int Y1, pdfColor strokeColor, pdfColor fillColor)
 {
     _coordX = X;
     _coordY = Y;
     _coordX1 = X1;
     _coordY1 = Y1;
     _strokeColor = strokeColor;
     _fillColor = fillColor;
     _lineStyle = new pdfLineStyle(1, predefinedLineStyle.csNormal);
 }
Example #18
0
 /// <summary>
 /// Method that adds a rectangle to the page object
 /// </summary>
 /// <param name="X">X position of the rectangle in the page</param>
 /// <param name="Y">Y position of the rectangle in the page</param>
 /// <param name="X1">X1 position of the rectangle in the page</param>
 /// <param name="Y1">Y1 position of the rectangle in the page</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Rectancle's color</param>
 /// <param name="newWidth">Border's width</param>
 public rectangleElement(int X, int Y, int X1, int Y1, pdfColor strokeColor, pdfColor fillColor, int newWidth)
 {
     _coordX      = X;
     _coordY      = Y;
     _coordX1     = X1;
     _coordY1     = Y1;
     _strokeColor = strokeColor;
     _fillColor   = fillColor;
     _lineStyle   = new pdfLineStyle(newWidth, predefinedLineStyle.csNormal);
 }
 /// <summary>
 /// Method that adds a rectangle to the page object
 /// </summary>
 /// <param name="X">X position of the rectangle in the page</param>
 /// <param name="Y">Y position of the rectangle in the page</param>
 /// <param name="X1">X1 position of the rectangle in the page</param>
 /// <param name="Y1">Y1 position of the rectangle in the page</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Rectancle's color</param>
 /// <param name="newWidth">Border's width</param>
 /// <param name="newStyle">Border's style</param>
 public rectangleElement(int X, int Y, int X1, int Y1, pdfColor strokeColor, pdfColor fillColor, int newWidth, predefinedLineStyle newStyle)
 {
     _coordX = X;
     _coordY = Y;
     _coordX1 = X1;
     _coordY1 = Y1;
     _strokeColor = strokeColor;
     _fillColor = fillColor;
     _lineStyle = new pdfLineStyle(newWidth, newStyle);
 }
Example #20
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="X1">X1 position in the PDF document</param>
 /// <param name="Y1">Y1 position in the PDF document</param>	
 /// <param name="newWidth">Line's size</param>
 /// <param name="newStyle">Line's style</param>
 /// <param name="newColor">Line's color</param>
 public lineElement(int X, int Y, int X1, int Y1, int newWidth, predefinedLineStyle newStyle, predefinedColor newColor)
 {
     _coordX = X;
     _coordY = Y;
     _coordX1 = X1;
     _coordY1 = Y1;
     _strokeColor = new pdfColor(newColor);
     _lineStyle = new pdfLineStyle(newWidth, newStyle);
 }
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="Ray">Ray of the circle</param>
 /// <param name="strokeColor">Color of circle's border</param>
 /// <param name="fillColor">Color of the circle</param>
 /// <param name="newWidth">Border's size</param>
 /// <param name="newStyle">Border's style</param>
 public circleElement(int X, int Y, int Ray, pdfColor strokeColor, pdfColor fillColor, int newWidth, predefinedLineStyle newStyle)
 {
     _coordX = X;
     _coordY = Y;
     _ray = Ray;
     _strokeColor = strokeColor;
     _fillColor = fillColor;
     _lineStyle = new pdfLineStyle(newWidth, newStyle);
 }
Example #22
0
 /// <summary>
 /// Class's constructor
 /// </summary>
 /// <param name="X">X position in the PDF document</param>
 /// <param name="Y">Y position in the PDF document</param>
 /// <param name="X1">X1 position in the PDF document</param>
 /// <param name="Y1">Y1 position in the PDF document</param>	
 /// <param name="newColor">Line's color</param>
 public lineElement(int X, int Y, int X1, int Y1, predefinedColor newColor)
 {
     _coordX = X;
     _coordY = Y;
     _coordX1 = X1;
     _coordY1 = Y1;
     _strokeColor = new pdfColor(newColor);
     _lineStyle = new pdfLineStyle(1,predefinedLineStyle.csNormal);
 }