export method

export(input_vsd, output_vdw)

Exports the diagram from vsd to vdw format. Not implemented yet.

def export(self, input_vsd, output_vdw):
    ...
Parameter Type Description
input_vsd str *.vsd file name.
output_vdw str *.vdw file name.

export(input_vsd, output_vdw)

Exports the diagram from vsd file to vdw stream format. Not implemented yet.

def export(self, input_vsd, output_vdw):
    ...
Parameter Type Description
input_vsd str *.vsd file name.
output_vdw io.RawIOBase vdw stream.

export(input_vsd, output_vdw)

Exports the diagram from vsd stream to *.vdw file format. Not implemented yet.

def export(self, input_vsd, output_vdw):
    ...
Parameter Type Description
input_vsd io.RawIOBase *.vsd file name.
output_vdw str vdw stream.

export(input_vsd, output_vdw)

Exports the diagram from vsd stream to vdw stream format. Not implemented yet.

def export(self, input_vsd, output_vdw):
    ...
Parameter Type Description
input_vsd io.RawIOBase vsd stream.
output_vdw io.RawIOBase vdw stream.

See Also