Hi,
I am trying to implement dragging & dropping HTML table to Microsoft word document.
It is a WPF application where I am dragging a RadListBox item to word and if I am setting data objects type to "Text" then plain text is getting dropped in MS word document.
var payload = DragDropPayloadManager.GeneratePayload(null);
payload.SetData("Text", "I am a plain text");
But my requirement is to drag and drop formatted text (with background, border, different font color).
Please advise.
I am trying to implement dragging & dropping HTML table to Microsoft word document.
It is a WPF application where I am dragging a RadListBox item to word and if I am setting data objects type to "Text" then plain text is getting dropped in MS word document.
var payload = DragDropPayloadManager.GeneratePayload(null);
payload.SetData("Text", "I am a plain text");
But my requirement is to drag and drop formatted text (with background, border, different font color).
Please advise.