iTextSharp.text.pdf.PdfContentByte.SetMcDepth C# (CSharp) 메소드

SetMcDepth() 개인적인 메소드

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