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

SetMcDepth() private méthode

private SetMcDepth ( int value ) : void
value int
Résultat void
        internal void SetMcDepth(int value)
        {
            if (duplicatedFrom != null)
                duplicatedFrom.SetMcDepth(value);
            else
                mcDepth = value;
        }
PdfContentByte