Configura gli oggetti Shape con i livelli in Visio in PHP

Aspose.Diagram - Configura oggetti forma con livelli

Per configurare gli oggetti forma con i livelli utilizzandoAspose.Diagram Java per PHP , semplicemente invocareConfigureShapeWithLayers modulo. Qui puoi vedere il codice di esempio.

Codice PHP

 # Create instance of Diagram

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

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

$i = 0;

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

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

#puts shape.getName().to_s

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

\# Add shape1 in first two layers. Here "0;1" are indexes of the layers

$layer = $shape->getLayerMem();

$layer->getLayerMember()->setValue("0;1");

}

elseif ($shape->getName()=="Preparation"){

\# Remove shape2 from all the layers

$layer = $shape->getLayerMem();

$layer->getLayerMember()->setValue("");

}

$i+=1;

}

\# Save diagram

$saveFileFormat=new SaveFileFormat();

$diagram->save($dataDir . "Layers.vdx", $saveFileFormat->VDX);

print "Configured Shape Objects with Layers in Visio.".PHP_EOL;

Scarica il codice in esecuzione

Scarica**Configura oggetti forma con livelli in Visio (Aspose.Diagram)**da uno qualsiasi dei siti di social coding sotto indicati: