在 PHP 中从形状表中检索用户定义的单元格

Aspose.Diagram - 从形状表中检索用户定义的单元格

从形状表中检索用户定义的单元格使用Aspose.Diagram Java 用于 PHP 只需调用获取用户定义的单元格模块。在这里您可以看到示例代码。

PHP代码

 # Create instance of Diagram

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

$pages=$diagram->getPages();

$count=0;

while($count<(int)(string)$pages->getCount()) {

$page = $pages->get($count);

$shapes = $page->getShapes();

$i = 0;

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

$shape = $shapes->get($i);

if ($shape->getNameU() == "Process") {

$users = $shape->getUsers();

$j = 0;

while ($j<(int)(string)$users->getCount()) {

$user = $users->get($j);

print "Name: " . $user->getNameU() . " Value: " . $user->getValue()->getVal() . " Prompt: " . $user->getPrompt()->getValue();

$j += 1;

}

break;

}

$i += 1;

}

$count += 1;

}

下载运行代码

下载**从形状表中检索用户定义的单元格 (Aspose.Diagram)**来自以下任何社交编码网站: