PdfTransform Class |
Namespace: Atalasoft.PdfDoc.Geometry
The PdfTransform type exposes the following members.
Name | Description | |
---|---|---|
PdfTransform |
Initializes a new instance of the PdfTransform class.
| |
PdfTransform(Double) |
Initializes a new instance of the PdfTransform class copying the array coming in.
| |
PdfTransform(PdfTransform) |
Initializes a new instance of the PdfTransform class copying the transform coming in.
| |
PdfTransform(Double, Double, Double, Double, Double, Double) |
Initializes a new instance of the PdfTransform class.
|
Name | Description | |
---|---|---|
Item |
Gets or sets the Double with the specified index.
| |
Matrix |
Gets the matrix as an array.
| |
TransformType |
Gets the type of the transform.
|
Name | Description | |
---|---|---|
Clone |
Creates a new object that is a copy of the current instance.
| |
Concat |
Concats the specified transform on to the current transform.
| |
Determinant |
Returns the determinant of this transform
| |
Equals |
Determines whether the specified Object is equal to this instance.
(Overrides ObjectEquals(Object).) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode |
Returns a hash code for this instance.
(Overrides ObjectGetHashCode.) | |
GetInverse |
Gets the inverse.
| |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Identity |
Returns an Identity Transform.
| |
IsIdentity |
Determines whether this instance is the identity matrix.
| |
IsInvertable |
Determines whether this instance is invertible.
| |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Rotate |
Returns a Rotation Transform
| |
Scale(Double) |
Returns a Scale Transform
| |
Scale(Double, Double) |
Returns a Scale Transform
| |
Skew |
Returns a Skew Transform
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
Transform(PointF) |
Transforms the specified point.
| |
Transform(PdfPoint) |
Transforms the specified point.
| |
Transform(Double, Double, Double, Double) |
Transforms the specified x and y coordinates.
| |
Translate |
Returns a Translate Transform
|
PdfTransform transform = PdfTransform.Rotate(Math.PI/2); transform.Concat(PdfTransform.Translate(100,100);