Aggiungi collegamento ipertestuale a una forma Visio in PHP

Aspose.Diagram - Aggiungi collegamento ipertestuale

Per aggiungere collegamento ipertestuale utilizzandoAspose.Diagram Java per PHP , semplicemente invocareAggiungi collegamento ipertestuale alla forma modulo. Qui puoi vedere il codice di esempio.

Codice PHP

 # Create instance of Diagram

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

\# Initialize Hyperlink object

$hyperlink = new Hyperlink();

\# Set address value

$hyperlink->getAddress()->setValue("http://www.google.com/");

\# Set sub address value

$hyperlink->getSubAddress()->setValue("Sub address here");

\# Set description value

$hyperlink->getDescription()->setValue("Description here");

\# Set name

$hyperlink->setName("MyHyperLink");

\# Add hyperlink to the shape

$diagram->getPages()->getPage("Flow 1")->getShapes()->getShape(1)->getHyperlinks()->add($hyperlink);

\# Save diagram

$saveFileFormat=new SaveFileFormat();

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

print "Added hyperlik to shape successfully!".PHP_EOL;

Scarica il codice in esecuzione

Scarica**Aggiungi collegamento ipertestuale a una forma Visio (Aspose.Diagram)**da uno qualsiasi dei siti di social coding sotto indicati: