Property | Type | Description | |
---|---|---|---|
Empty |
Property | Type | Description |
---|
Method | Description | |
---|---|---|
Add ( |
Adds two SizeF structures together and returns the result.
|
|
Equals ( object obj ) : bool |
Determines if the current SizeF is equal to the specified
|
|
GetHashCode ( ) : int |
Gets a hash code for the current SizeF.
|
|
SizeF ( |
Constructs a new instance of SizeF from the specified PointF. The PointF.X will become the Width and the PointF.Y will be the Height. |
|
SizeF ( float width, float height ) : System |
Constructs a new instance of SizeF from the specified Width and Height.
|
|
Subtract ( |
Subtracts a SizeF by another SizeF.
|
|
ToString ( ) : string |
Gets a string representation of the current SizeF.
|
|
operator ( ) : |
Adds two SizeF structures together and returns the result.
|
|
operator ( ) : bool |
Determines if two SizeF structures are equal.
|
public static Add ( |
||
sz1 | The first |
|
sz2 | The second |
|
return |
public Equals ( object obj ) : bool | ||
obj | object | The object to compare to the current |
return | bool |
public SizeF ( |
||
pt | The |
|
return | System |
public SizeF ( float width, float height ) : System | ||
width | float | The value that should represent the |
height | float | The value that should represent the |
return | System |
public static Subtract ( |
||
sz1 | The |
|
sz2 | The |
|
return |