iTextSharp.text.pdf.PdfContentByte.SetPatternFill C# (CSharp) Méthode

SetPatternFill() public méthode

public SetPatternFill ( PdfPatternPainter p, BaseColor color ) : void
p PdfPatternPainter
color BaseColor
Résultat void
        public virtual void SetPatternFill(PdfPatternPainter p, BaseColor color)
        {
            if (ExtendedColor.GetType(color) == ExtendedColor.TYPE_SEPARATION)
                SetPatternFill(p, color, ((SpotColor)color).Tint);
            else
                SetPatternFill(p, color, 0);
        }

Same methods

PdfContentByte::SetPatternFill ( PdfPatternPainter p ) : void
PdfContentByte::SetPatternFill ( PdfPatternPainter p, BaseColor color, float tint ) : void
PdfContentByte