iTextSharp.text.xml.ITextHandler.SetControlOpenClose C# (CSharp) 메소드

SetControlOpenClose() 공개 메소드

Sets the parameter that allows you to enable/disable the control over the Document.Open() and Document.Close() method.
If you set this parameter to true (= default), the parser will open the Document object when the start-root-tag is encountered and close it when the end-root-tag is met. If you set it to false, you have to open and close the Document object yourself.
public SetControlOpenClose ( bool controlOpenClose ) : void
controlOpenClose bool set this to false if you plan to open/close the Document yourself
리턴 void
        public void SetControlOpenClose(bool controlOpenClose) {
            this.controlOpenClose = controlOpenClose;
        }