Module: Asposeslidesjava::Hyperlinks

Defined in:
lib/asposeslidesjava/Slides/hyperlinks.rb

Instance Method Summary collapse

Instance Method Details

#initializeObject



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

def initialize()
    data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
            
    # Instantiate Presentation class that represents the presentation file
    pres = Rjb::import('com.aspose.slides.Presentation').new(data_dir + 'demo.pptx')

    # Removing the hyperlinks from presentation
    pres.getHyperlinkQueries().removeAllHyperlinks()

    # Saving the presentation
    save_format = Rjb::import('com.aspose.slides.SaveFormat')
    pres.save(data_dir + "Hyperlinks.pptx", save_format.Pptx)

    puts "Removed hyperlinks successfully, please check the output file."
end