Пример #1
0
        /// <summary>
        /// Method that adds a circle to the page object
        /// </summary>
        /// <param name="X">X position of the circle in the page</param>
        /// <param name="Y">Y position of the circle in the page</param>
        /// <param name="ray">Circle's ray</param>
        /// <param name="strokeColor">Border's color</param>
        /// <param name="fillColor">Circle's color</param>
        /// <param name="borderStyle">Border's style</param>
        /// <param name="borderWidth">Border's size</param>
        public void drawCircle(int X, int Y, int ray, predefinedColor strokeColor, predefinedColor fillColor, predefinedLineStyle borderStyle, int borderWidth)
        {
            circleElement objCircle = new circleElement(X, Y, ray, strokeColor, fillColor, borderWidth, borderStyle);

            _elements.Add(objCircle);
            objCircle = null;
        }
Пример #2
0
        /// <summary>
        /// Method that adds a circle to the page object
        /// </summary>
        /// <param name="X">X position of the circle in the page</param>
        /// <param name="Y">Y position of the circle in the page</param>
        /// <param name="ray">Circle's ray</param>
        /// <param name="strokeColor">Border's color</param>
        /// <param name="fillColor">Circle's color</param>
        /// <param name="borderStyle">Border's style</param>
        public void drawCircle(int X, int Y, int ray, pdfColor strokeColor, pdfColor fillColor, predefinedLineStyle borderStyle)
        {
            circleElement objCircle = new circleElement(X, Y, ray, strokeColor, fillColor, borderStyle);

            _persistentElements.Add(objCircle);
            objCircle = null;
        }
Пример #3
0
        /// <summary>
        /// Method that adds a circle to the page object
        /// </summary>
        /// <param name="X">X position of the circle in the page</param>
        /// <param name="Y">Y position of the circle in the page</param>
        /// <param name="ray">Circle's ray</param>
        /// <param name="strokeColor">Border's color</param>
        /// <param name="fillColor">Circle's color</param>
        public void drawCircle(int X, int Y, int ray, predefinedColor strokeColor, predefinedColor fillColor)
        {
            circleElement objCircle = new circleElement(X, Y, ray, strokeColor, fillColor);

            _elements.Add(objCircle);
            objCircle = null;
        }
Пример #4
0
        /// <summary>
        /// Method that adds a circle to the page object
        /// </summary>
        /// <param name="X">X position of the circle in the page</param>
        /// <param name="Y">Y position of the circle in the page</param>
        /// <param name="ray">Circle's ray</param>
        /// <param name="strokeColor">Border's color</param>
        /// <param name="fillColor">Circle's color</param>
        /// <param name="borderWidth">Border's size</param>
        public void drawCircle(int X, int Y, int ray, pdfColor strokeColor, pdfColor fillColor, int borderWidth)
        {
            circleElement objCircle = new circleElement(X, Y, ray, strokeColor, fillColor, borderWidth);

            _persistentElements.Add(objCircle);
            objCircle = null;
        }
Пример #5
0
 /// <summary>
 /// Method that adds a circle to the page object
 /// </summary>
 /// <param name="X">X position of the circle in the page</param>
 /// <param name="Y">Y position of the circle in the page</param>
 /// <param name="ray">Circle's ray</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Circle's color</param>
 /// <param name="borderStyle">Border's style</param>
 /// <param name="borderWidth">Border's size</param>
 public void drawCircle(int X, int Y, int ray, predefinedColor strokeColor, predefinedColor fillColor, predefinedLineStyle borderStyle, int borderWidth)
 {
     circleElement objCircle = new circleElement(X, Y, ray, strokeColor, fillColor, borderWidth, borderStyle);
     _elements.Add(objCircle);
     objCircle = null;
 }
Пример #6
0
 /// <summary>
 /// Method that adds a circle to the page object
 /// </summary>
 /// <param name="X">X position of the circle in the page</param>
 /// <param name="Y">Y position of the circle in the page</param>
 /// <param name="ray">Circle's ray</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Circle's color</param>
 public void drawCircle(int X, int Y, int ray, predefinedColor strokeColor, predefinedColor fillColor)
 {
     circleElement objCircle = new circleElement(X, Y, ray, strokeColor, fillColor);
     _elements.Add(objCircle);
     objCircle = null;
 }
 /// <summary>
 /// Method that adds a circle to the page object
 /// </summary>
 /// <param name="X">X position of the circle in the page</param>
 /// <param name="Y">Y position of the circle in the page</param>
 /// <param name="ray">Circle's ray</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Circle's color</param>
 /// <param name="borderStyle">Border's style</param>
 public void drawCircle(int X, int Y, int ray, pdfColor strokeColor, pdfColor fillColor, predefinedLineStyle borderStyle)
 {
     circleElement objCircle = new circleElement(X, Y, ray, strokeColor, fillColor, borderStyle);
     _persistentElements.Add(objCircle);
     objCircle = null;
 }
 /// <summary>
 /// Method that adds a circle to the page object
 /// </summary>
 /// <param name="X">X position of the circle in the page</param>
 /// <param name="Y">Y position of the circle in the page</param>
 /// <param name="ray">Circle's ray</param>
 /// <param name="strokeColor">Border's color</param>
 /// <param name="fillColor">Circle's color</param>
 /// <param name="borderWidth">Border's size</param>
 public void drawCircle(int X, int Y, int ray, pdfColor strokeColor, pdfColor fillColor, int borderWidth)
 {
     circleElement objCircle = new circleElement(X, Y, ray, strokeColor, fillColor, borderWidth);
     _persistentElements.Add(objCircle);
     objCircle = null;
 }