Remove Fields
Remove Field
Aspose.Diagram for Python via Java lets you remove field to Microsoft Visio diagrams from within your own applications, without Microsoft Office Automation.
The Field object represents text field in a text run. The field property, exposed by the Shape class supports a collection of Aspose.Diagram.Field objects.
Programming Sample
The following piece of code remove a field in shape.
import jpype | |
import asposediagram | |
jpype.startJVM() | |
from asposediagram.api import * | |
lic = License() | |
lic.setLicense("Aspose.Total.Product.Family.lic") | |
# load a Visio diagram | |
diagram = Diagram("InsertField_out.vsdx") | |
# Get page by name | |
page = diagram.getPages().getPage("Page-1") | |
# Get Visio Shape | |
shape = page.getShapes().get(0) | |
fld = shape.getFields().get(0) | |
# Remove field of shape | |
shape.getFields().remove(fld) | |
# Save diagram | |
diagram.save("RemoveField_out.vsdx", SaveFileFormat.VSDX) | |
jpype.shutdownJVM() |