iTextSharp.text.DocWriter.WriteEnd C# (CSharp) Метод

WriteEnd() защищенный Метод

Writes an endtag to the stream.
protected WriteEnd ( string tag ) : void
tag string the name of the tag
Результат void
        protected void WriteEnd(string tag)
        {
            os.WriteByte(LT);
            os.WriteByte(FORWARD);
            Write(tag);
            os.WriteByte(GT);
        }

Same methods

DocWriter::WriteEnd ( ) : void