Class MatchingInfo
Represents a result of snapping match operation.
Inheritance
System.Object
MatchingInfo
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public sealed class MatchingInfo : ValueType
Constructors
MatchingInfo(Double)
Initializes a new instance of the MatchingInfo struct.
Declaration
public MatchingInfo(double delta)
Parameters
System.Double
delta
|
Properties
Delta
Gets or sets the delta between matched objects.
Declaration
public double Delta { get; set; }
Property Value
System.Double
|
MatchingPoints
Gets the matching points between matched objects.
Declaration
public IEnumerable<double> MatchingPoints { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Double>
|
Methods
AddMatchingPoint(Double)
Add a point to the matching points collection.
Declaration
public void AddMatchingPoint(double matchingPoint)
Parameters
System.Double
matchingPoint
|