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

Structure wrapping point and its manipulation type.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Syntax:

C#
public struct ManipulationPointData

Inherited Members ValueType.ToString()

Constructors

Initializes a new instance of the ManipulationPointData struct.

C#
public ManipulationPointData(Point point, ManipulationPointType pointType)
Parameters:pointPoint

The point.

pointTypeManipulationPointType

Type of the point.

Properties

Point

Point

Returns the point.

C#
public readonly Point Point { get; }

Returns the manipulation type.

C#
public readonly ManipulationPointType PointType { get; }

Methods

Determines whether the specified object is equal to this instance.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare with this instance.

Returns:

bool

True if the specified object is equal to this instance; otherwise, false.

Overrides: ValueType.Equals(object)

Returns a hash code for this instance.

C#
public override int GetHashCode()
Returns:

int

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.

Overrides: ValueType.GetHashCode()

Operators

Implements the operator !=.

C#
public static bool operator !=(ManipulationPointData point1, ManipulationPointData point2)
Parameters:point1ManipulationPointData

The first point.

point2ManipulationPointData

The second point.

Returns:

bool

The result of the operator.

Implements the operator ==.

C#
public static bool operator ==(ManipulationPointData point1, ManipulationPointData point2)
Parameters:point1ManipulationPointData

The first point.

point2ManipulationPointData

The second point.

Returns:

bool

The result of the operator.