New to Telerik UI for WinFormsStart a free 30-day trial

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; }

Gets or sets the image.

C#
public Image Image { 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; }

Gets or sets the size of the shape.

C#
public Size ShapeSize { get; set; }

Gets or sets the text.

C#
public string Text { get; set; }