Int32Size Struct
Definition
Represents the size of a rectangular region with an ordered pair of width and height.
Implements
Syntax
[Serializable]
public struct Int32Size : IEquatable<Int32Size>
Constructors
| Int32Size(Int32Point) | Initializes a new instance of the Int32Size class from the specified Int32Point. |
| Int32Size(Int32) | Initializes a new instance of the Int32Size struct with equal width and height. |
| Int32Size(Int32, Int32) | Initializes a new instance of the Int32Size class from the specified dimensions. |
Fields
| Empty | Initializes a new instance of the Int32Size class. |
Properties
| Height | Represents the vertical component of this Int32Size. |
| IsEmpty | Tests whether this Int32Size has zero width and height. |
| Width | Represents the horizontal component of this Int32Size. |
Methods
| Add(Int32Size, Int32Size) | Performs vector addition of two Int32Size objects. |
| Ceiling(Size) | Converts a SizeF to a Size by performing a ceiling operation on all the coordinates. |
| Equals(Int32Size) | Indicates whether the current object is equal to another object of the same type. |
| Equals(Object) | Tests to see whether the specified object is a Int32Size with the same dimensions as this Int32Size. |
| GetHashCode() | Returns a hash code. |
| Max(Int32Size, Int32Size) | Gets maximal width and height from the two specified Int32Size values. |
| Round(Size) | Converts a SizeF to a Size by performing a round operation on all the coordinates. |
| Subtract(Int32Size, Int32Size) | |
| ToString() | Creates a human-readable string that represents this Int32Size. |
| Truncate(Size) | Converts a SizeF to a Size by performing a truncate operation on all the coordinates. |
Operators
| Addition(Int32Size, Int32Size) | Performs vector addition of two Int32Size objects. |
| Division(Int32Size, Double) | |
| Division(Int32Size, Int32) | |
| Equality(Int32Size, Int32Size) | Tests whether two Int32Size objects are identical. |
| Explicit(Int32Size to Int32Point) | Converts the specified Int32Size to a Int32Point. |
| Implicit(Int32Size to Size) | |
| Inequality(Int32Size, Int32Size) | Tests whether two Int32Size objects are different. |
| Multiply(Int32Size, Double) | |
| Multiply(Int32Size, Int32) | Multiplies Int32Size by an System.Int32 producing Int32Size. |
| Multiply(Double, Int32Size) | |
| Multiply(Int32, Int32Size) | Multiplies a Int32Size by an System.Int32 producing Int32Size. |
| Subtraction(Int32Size, Int32Size) |