Class DataTransferResult
Data bucket holding the result of a data transfer from a System.Windows.DataObject to a diagramming object. This is used in conjunction with the IDataTransferService in relation to a clipboard or a dragdrop transfer.
Inheritance
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public class DataTransferResult : Object
Constructors
DataTransferResult()
Properties
DiagramId
Gets or sets the diagram id from where the Items came from, if any.
Declaration
public string DiagramId { get; set; }
Property Value
System.String
|
Image
Gets or sets the image.
Declaration
public Image Image { get; set; }
Property Value
System.Windows.Controls.Image
|
Items
Gets or sets the transferred diagram items.
Declaration
public IEnumerable<IDiagramItem> Items { get; set; }
Property Value
System.Collections.Generic.IEnumerable<IDiagramItem>
|
SerializedDiagram
Gets or sets the serialized diagram.
Declaration
public string SerializedDiagram { get; set; }
Property Value
System.String
|
ShapeSize
Gets or sets the size of the shape.
Declaration
public Size ShapeSize { get; set; }
Property Value
System.Windows.Size
|
Text
Gets or sets the text.
Declaration
public string Text { get; set; }
Property Value
System.String
|