iTextSharp.text.pdf.PdfShading.AddToBody C# (CSharp) Method

AddToBody() public method

public AddToBody ( ) : void
return void
        public void AddToBody()
        {
            if (bBox != null)
                shading.Put(PdfName.BBOX, new PdfArray(bBox));
            if (antiAlias)
                shading.Put(PdfName.ANTIALIAS, PdfBoolean.PDFTRUE);
            writer.AddToBody(shading, this.ShadingReference);
        }