从 Visio PHP 绘图中获取形状超链接数据

Aspose.Diagram - 获取形状超链接数据

获取形状超链接数据使用Aspose.Diagram Java 用于 PHP 只需调用获取形状超链接数据模块。在这里您可以看到示例代码。

PHP代码

 # Create instance of Diagram

$diagram = new Diagram($dataDir . "drawing.vdx");

\# Get a particular shape

$shape=$diagram->getPages()->getPage("Flow 1")->getShapes()->getShape(1);

$hyperlinks=$shape->getHyperlinks();

$i=0;

while ($i<(int)(string)$hyperlinks->getCount()) {

$hyperlink=$hyperlinks->get($i);

print "Address: " . (string)$hyperlink->getAddress()->getValue();

print "Sub Address: " . (string)$hyperlink->getSubAddress()->getValue();

print "Description: " . (string)$hyperlink->getDescription()->getValue();

$i+=1;

}

下载运行代码

下载**从 Visio 绘图中获取形状超链接数据 (Aspose.Diagram)**来自以下任何社交编码网站: