Lines Matching defs:Size

21     public struct Size : IEquatable<Size>  struct
36 /// Initializes a new instance of the <see cref='System.Drawing.Size'/> class from
40 public Size(Point pt) in Size() method
50 /// Initializes a new instance of the <see cref='System.Drawing.Size'/> class from
53 public Size(int width, int height) in Size() method
60 /// Converts the specified <see cref='System.Drawing.Size'/> to a
67 /// Performs vector addition of two <see cref='System.Drawing.Size'/> objects.
74 …/// Contracts a <see cref='System.Drawing.Size'/> by another <see cref='System.Drawing.Size'…
77 public static Size operator -(Size sz1, Size sz2) => Subtract(sz1, sz2); in operator -()
85 public static Size operator *(int left, Size right) => Multiply(right, left); in operator *()
93 public static Size operator *(Size left, int right) => Multiply(left, right); in operator *()
101 …/(Size left, int right) => new Size(unchecked(left.width / right), unchecked(left.height / right)); in operator /()
129 /// Tests whether two <see cref='System.Drawing.Size'/> objects
136 /// Tests whether two <see cref='System.Drawing.Size'/> objects are different.
142 /// Converts the specified <see cref='System.Drawing.Size'/> to a
148 /// Tests whether this <see cref='System.Drawing.Size'/> has zero
161 /// <see cref='System.Drawing.Size'/>.
176 /// <see cref='System.Drawing.Size'/>.
186 /// Performs vector addition of two <see cref='System.Drawing.Size'/> objects.
201 …/// Contracts a <see cref='System.Drawing.Size'/> by another <see cref='System.Drawing.Size'…
223 /// <see cref='System.Drawing.Size'/>
241 /// <see cref='System.Drawing.Size'/>.
244 …override string ToString() => "{Width=" + width.ToString() + ", Height=" + height.ToString() + "}"; in ToString()
252 private static Size Multiply(Size size, int multiplier) => in Multiply()
261 private static SizeF Multiply(Size size, float multiplier) => in Multiply()