module Asposeslidesjava::RemoveRowColumn

Public Class Methods

new() click to toggle source
# File lib/asposeslidesjava/Tables/removerowcolumn.rb, line 3
def initialize()
    data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/Tables/'
            
    # Create an instance of Presentation class
    pres = Rjb::import('com.aspose.slides.Presentation').new

    # Get the first slide
    slide = pres.getSlides().get_Item(0)

    col_width = [100, 50, 30]
    row_height = [30, 50, 30]                                           
                                                                                   
    table = slide.getShapes().addTable(100, 100, col_width, row_height)
                                                                                   
    table.getRows().removeAt(1, false)                                           
    table.getColumns().removeAt(1, false) 

    # Write the presentation as a PPTX file
    save_format = Rjb::import('com.aspose.slides.SaveFormat')
    pres.save(data_dir + "RemoveRowColumn.pptx", save_format.Pptx)

    puts "Removed Row & Column from table, please check the output file."
end