A
Anne Nonyme
Hello,
I wand to get out a Visio Shape from the clipboard (c#).
IDataObject data = Clipboard.GetDataObject();
System.IO.MemoryStream l_MemStream = (System.IO.MemoryStream)data.GetData
("Visio 11.0 Shapes");
How to re-create a Shape from this MemoryStream ?
I try to do :
data.GetData (typeof(Microsoft.Office.Interop.Visio.ShapeClass))
but returns null.
Thanks
Anne
I wand to get out a Visio Shape from the clipboard (c#).
IDataObject data = Clipboard.GetDataObject();
System.IO.MemoryStream l_MemStream = (System.IO.MemoryStream)data.GetData
("Visio 11.0 Shapes");
How to re-create a Shape from this MemoryStream ?
I try to do :
data.GetData (typeof(Microsoft.Office.Interop.Visio.ShapeClass))
but returns null.
Thanks
Anne