Class DrawingPoint
Encapsulates a Windows.
Inheritance
Namespace: PSPDFKit.Geometry
Assembly: PSPDFKit.dll
Syntax
public sealed class DrawingPoint
Constructors
DrawingPoint()
Constructs a Drawing
Declaration
public DrawingPoint()
DrawingPoint(Double, Double)
Constructs a Drawing
Declaration
public DrawingPoint(double x, double y)
Parameters
Type | Name | Description |
---|---|---|
System. |
x | The position of the Drawing |
System. |
y | The position of the Drawing |
DrawingPoint(Double, Double, Single)
Constructs a Drawing
Declaration
public DrawingPoint(double x, double y, float intensity)
Parameters
Type | Name | Description |
---|---|---|
System. |
x | The position of the Drawing |
System. |
y | The position of the Drawing |
System. |
intensity | An intensity value between 0.0f and 1.0f representing the pressure that was exerted by the touch device. |
DrawingPoint(Point)
Constructs a Drawing
Declaration
public DrawingPoint(Point point)
Parameters
Type | Name | Description |
---|---|---|
Windows. |
point | The point representing the location of the Drawing |
Properties
Intensity
An intensity value between 0.0f and 1.0f representing the pressure that was exerted by the touch device.
Declaration
public float Intensity { get; set; }
Property Value
Type | Description |
---|---|
System. |
Point
The point representing the location of the Drawing
Declaration
public Point Point { get; set; }
Property Value
Type | Description |
---|---|
Windows. |