Export

Export(string, string)

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

public static void Export(string inputVsd, string outputVdw)
Parameter Type Description
inputVsd String *.vsd file name.
outputVdw String *.vdw file name.

See Also


Export(string, Stream)

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

public static void Export(string inputVsd, Stream outputVdw)
Parameter Type Description
inputVsd String *.vsd file name.
outputVdw Stream vdw stream.

See Also


Export(Stream, string)

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

public static void Export(Stream inputVsd, string outputVdw)
Parameter Type Description
inputVsd Stream *.vsd file name.
outputVdw String vdw stream.

See Also


Export(Stream, Stream)

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

public static void Export(Stream inputVsd, Stream outputVdw)
Parameter Type Description
inputVsd Stream vsd stream.
outputVdw Stream vdw stream.

See Also