Module: Asposeslidesjava::RemoveVBAMacro

Defined in:
lib/asposeslidesjava/VBAMacros/removevbamacro.rb

Instance Method Summary collapse

Instance Method Details

#initializeObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/asposeslidesjava/VBAMacros/removevbamacro.rb', line 3

def initialize()
    data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
            
    # Create an instance of Presentation class
    pres = Rjb::import('com.aspose.slides.Presentation').new(data_dir + 'vbamacro.pptx')

    # Access the Vba module and remove 
    pres.getVbaProject().getModules().remove(pres.getVbaProject().getModules().get_Item(0))

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

    puts "Removed VBA Macro, please check the output file."
end