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

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

Writes the markup attributes of the specified MarkupAttributes object to the stream.
protected WriteMarkupAttributes ( Properties markup ) : bool
markup System.util.Properties
Результат bool
        protected bool WriteMarkupAttributes(Properties markup)
        {
            if (markup == null) return false;
            foreach (String name in markup.Keys) {
                Write(name, markup[name]);
            }
            markup.Clear();
            return true;
        }