Méthode | Description | |
---|---|---|
CompareTo ( |
Compares the current instance with another object of the same type.
|
|
Equals ( |
Determines whether the specified MagickGeometry is equal to the current MagickGeometry.
|
|
Equals ( object obj ) : bool |
Determines whether the specified object is equal to the current MagickGeometry.
|
|
GetHashCode ( ) : int |
Serves as a hash of this type.
|
|
MagickGeometry ( ) |
Initializes a new instance of the MagickGeometry class.
|
|
MagickGeometry ( Percentage percentageWidth, Percentage percentageHeight ) |
Initializes a new instance of the MagickGeometry class using the specified width and height.
|
|
MagickGeometry ( int widthAndHeight ) |
Initializes a new instance of the MagickGeometry class using the specified width and height.
|
|
MagickGeometry ( int width, int height ) |
Initializes a new instance of the MagickGeometry class using the specified width and height.
|
|
MagickGeometry ( int x, int y, Percentage percentageWidth, Percentage percentageHeight ) |
Initializes a new instance of the MagickGeometry class using the specified offsets, width and height.
|
|
MagickGeometry ( int x, int y, int width, int height ) |
Initializes a new instance of the MagickGeometry class using the specified offsets, width and height.
|
|
MagickGeometry ( string value ) |
Initializes a new instance of the MagickGeometry class using the specified geometry.
|
|
MagickGeometry ( |
Initializes a new instance of the MagickGeometry class.
|
|
ToPoint ( ) : System.Drawing.PointD |
Returns a PointD that represents the position of the current MagickGeometry.
|
|
ToString ( ) : string |
Returns a string that represents the current MagickGeometry.
|
|
operator ( ) : bool |
Determines whether the specified MagickGeometry instances are considered equal.
|
Méthode | Description | |
---|---|---|
Clone ( |
||
CreateInstance ( IntPtr instance ) : |
||
CreateNativeInstance ( ) : NativeMagickGeometry | ||
FromRectangle ( |
||
FromString ( string value ) : |
||
Initialize ( NativeMagickGeometry instance ) : void | ||
Initialize ( NativeMagickGeometry instance, GeometryFlags flags ) : void | ||
Initialize ( int x, int y, int width, int height, bool isPercentage ) : void | ||
MagickGeometry ( NativeMagickGeometry instance ) | ||
ToString ( |
public CompareTo ( |
||
other | The object to compare this geometry with. | |
Résultat | int |
public Equals ( |
||
other | The |
|
Résultat | bool |
public Equals ( object obj ) : bool | ||
obj | object | The object to compare this |
Résultat | bool |
public MagickGeometry ( Percentage percentageWidth, Percentage percentageHeight ) | ||
percentageWidth | Percentage | The percentage of the width. |
percentageHeight | Percentage | The percentage of the height. |
public MagickGeometry ( int widthAndHeight ) | ||
widthAndHeight | int | The width and height. |
public MagickGeometry ( int width, int height ) | ||
width | int | The width. |
height | int | The height. |
public MagickGeometry ( int x, int y, Percentage percentageWidth, Percentage percentageHeight ) | ||
x | int | The X offset from origin. |
y | int | The Y offset from origin. |
percentageWidth | Percentage | The percentage of the width. |
percentageHeight | Percentage | The percentage of the height. |
public MagickGeometry ( int x, int y, int width, int height ) | ||
x | int | The X offset from origin. |
y | int | The Y offset from origin. |
width | int | The width. |
height | int | The height. |
public MagickGeometry ( string value ) | ||
value | string | Geometry specifications in the form: <width>x<height> /// {+-}<xoffset>{+-}<yoffset> (where width, height, xoffset, and yoffset are numbers) |
public MagickGeometry ( |
||
rectangle | The rectangle to use. | |
Résultat | System.Drawing |