Apache POI Delete Slide To delete powerpoint slide, Apache POI provides a method removeSlide(). It takes slide’s index as an argument. Slide…
Apache POI Tutorial
Apache POI Excel Header Apache POI allows us to set header for our excel document. It provides getHeader() method of Sheet interface…
Apache POI Page Size We can get and set page size of the powerpoint page. To get the page size getPageSize() method…
Apache POI Architecture Apache POI consists of various components and make an architecture to form a working system. For example, POIFS and…
Apache POI Excel Image In Apache POI, images are part of the drawing support. To add an image just call createPicture() on…
Apache POI Reorder Slide To reorder the powerpoint slides, Apache POI provides a method setSlideOrder(). This method switched slides by slide’s positions.…
Apache POI Cell Multiple Styles To apply multiple styles and text formatting to a cell, Apache POI provides CellStyle feature. We can…
Apache POI Workbook Sheet To create a sheet in excel, POI provides a method createSheet() which creates a new sheet each time…
Apache POI Slide Layout We can set slide layout, it’s title and content as well. In the following example, we are creating…
Apache POI Comment A comment is a rich text note which is associated to a cell. Comment content is stored separate from…