Point Public class
Diagram
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph iTextSharp.awt.geom
iTextSharp.awt.geom.Point[[Point]]
iTextSharp.awt.geom.Point2D[[Point2D]]
class iTextSharp.awt.geom.Point2D abstractStyle;
end
iTextSharp.awt.geom.Point2D --> iTextSharp.awt.geom.Point
Members
Methods
Public methods
Details
Inheritance
Constructors
Point [1/4]
Source code
public Point()
Point [2/4]
Source code
public Point(int x, int y)
Arguments
Type | Name | Description |
---|
int | x | |
int | y | |
Point [3/4]
Source code
public Point(double x, double y)
Arguments
Type | Name | Description |
---|
double | x | |
double | y | |
Point [4/4]
Source code
public Point(Point p)
Arguments
Type | Name | Description |
---|
Point | p | |
Methods
Equals
Source code
public override bool Equals(object obj)
Arguments
Type | Name | Description |
---|
object | obj | |
ToString
Source code
public override string ToString()
GetX
Source code
public override double GetX()
GetY
Source code
public override double GetY()
GetLocation
Source code
public virtual Point GetLocation()
SetLocation [1/3]
Source code
public virtual void SetLocation(Point p)
Arguments
Type | Name | Description |
---|
Point | p | |
SetLocation [2/3]
Source code
public virtual void SetLocation(int x, int y)
Arguments
Type | Name | Description |
---|
int | x | |
int | y | |
SetLocation [3/3]
Source code
public override void SetLocation(double x, double y)
Arguments
Type | Name | Description |
---|
double | x | |
double | y | |
Move [1/2]
Source code
public virtual void Move(int x, int y)
Arguments
Type | Name | Description |
---|
int | x | |
int | y | |
Move [2/2]
Source code
public virtual void Move(double x, double y)
Arguments
Type | Name | Description |
---|
double | x | |
double | y | |
Translate [1/2]
Source code
public virtual void Translate(int dx, int dy)
Arguments
Type | Name | Description |
---|
int | dx | |
int | dy | |
Translate [2/2]
Source code
public virtual void Translate(double dx, double dy)
Arguments
Type | Name | Description |
---|
double | dx | |
double | dy | |
Generated with ModularDoc