Module: Asposeslidesjava::RemoveRowColumn

Defined in:
lib/asposeslidesjava/Tables/removerowcolumn.rb

Instance Method Summary collapse

Instance Method Details

#initializeObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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