PHP'de Visio Şekil Metni Güncellemesi

Aspose.Diagram - Güncelleme Visio Şekil Metni

Visio Shape Text’i kullanarak güncellemek içinPHP için Aspose.Diagram Java , sadece çağırmakShapeText’i Güncelle modül. Burada örnek kodu görebilirsiniz.

PHP Kodu

 # Create instance of Diagram

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

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

$i=0;

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

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

if ($shape->getNameU() == "Process" && (int)(string)$shape->getID() == 1) {

$shape->getText()->getValue()->clear();

$shape->getText()->getValue()->add(new Txt("New Text"));

}

$i += 1;

}

\# Save diagram

$saveFileFormat=new SaveFileFormat();

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

print "Updated shape text.".PHP_EOL;

Çalışan Kodu İndir

İndirmek**Güncelleme Visio Şekil Metni (Aspose.Diagram)**aşağıda belirtilen sosyal kodlama sitelerinin herhangi birinden: