All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hfg.xml.msofficexml.docx.drawingml.text.DmlTextBody Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
package com.hfg.xml.msofficexml.docx.drawingml.text;


import com.hfg.xml.msofficexml.docx.Docx;
import com.hfg.xml.msofficexml.docx.drawingml.DmlXML;
import com.hfg.xml.msofficexml.docx.wordprocessingml.WmlXMLTag;

public class DmlTextBody extends WmlXMLTag
{
   //###########################################################################
   // CONSTRUCTORS
   //###########################################################################

   //---------------------------------------------------------------------------
   public DmlTextBody(Docx inDocx)
   {
      super(DmlXML.TEXT_BODY, inDocx);
   }

   //###########################################################################
   // PUBLIC METHODS
   //###########################################################################

   //---------------------------------------------------------------------------
   public DmlParagraph addParagraph()
   {
      DmlParagraph p = new DmlParagraph();
      addSubtag(p);

      return p;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy