DataTransferResult
Class
Data bucket holding the result of a data transfer from a DataObject to a diagramming object. This is used in conjunction with the IDataTransferService in relation to a clipboard or a dragdrop transfer.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.WinControls.RadDiagram.dll
Syntax:
C#
public class DataTransferResult
Inheritance: objectDataTransferResult
Constructors
Initializes a new instance of the DataTransferResult class.
C#
public DataTransferResult()
Properties
Gets or sets the diagram id from where the Items came from, if any.
C#
public string DiagramId { get; set; }
Items
IEnumerable<IDiagramItem>
Gets or sets the transferred diagram items.
C#
public IEnumerable<IDiagramItem> Items { get; set; }
Gets or sets the serialized diagram.
C#
public string SerializedDiagram { get; set; }