iTextSharp.text.Meta.Meta C# (CSharp) 메소드

Meta() 공개 메소드

Constructs a Meta.
public Meta ( int type, string content ) : System
type int the type of meta-information
content string the content
리턴 System
        public Meta(int type, string content)
        {
            this.type = type;
            this.content = new StringBuilder(content);
        }

Same methods

Meta::Meta ( string tag, string content ) : System