3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/asposediagramjava/Hyperlinks/getshapehyperlinkdata.rb', line 3
def initialize()
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
diagram = Rjb::import('com.aspose.diagram.Diagram').new(data_dir + "Hyperlinks.vdx")
shape = diagram.getPages().getPage("Flow 1").getShapes().getShape(1)
hyperlinks = shape.getHyperlinks()
i = 0
while i < hyperlinks.getCount()
hyperlink = hyperlinks.get(i)
puts "Address: " + hyperlink.getAddress().getValue().to_s
puts "Sub Address: " + hyperlink.getSubAddress().getValue().to_s
puts "Description: " + hyperlink.getDescription().getValue().to_s
i +=1
end
end
|