Rufen Sie Visio Shape-Informationen in PHP ab

Aspose.Diagram - Abrufen von Visio-Shape-Informationen

Abrufen von Visio-Shape-Informationen mitAspose.Diagram Java für PHP , einfach aufrufenGetShapeInfo Modul. Hier sehen Sie Beispielcode.

PHP-Code

 # Create instance of Diagram

$diagram = new Diagram($dataDir."Drawing1.vsd");

$shapes = $diagram->getPages()->getPage(0)->getShapes();

$i = 0;

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

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

\# Display information about the shapes

print "Shape ID : " . (string)$shape->getID().PHP_EOL;

print "Name : " . (string)$shape->getName().PHP_EOL;

print "Master Shape : ".(string)$shape->getMaster()->getName().PHP_EOL;

$i += 1;

}

Laufcode herunterladen

Download**Visio Forminformationen abrufen (Aspose.Diagram)**von einer der unten genannten Social-Coding-Sites: