3 writes to width
System.Drawing.Primitives (3)
System\Drawing\Size.cs (3)
31
width
= pt.X;
40
this.
width
= width;
135
set =>
width
= value;
7 references to width
System.Drawing.Primitives (7)
System\Drawing\Size.cs (7)
81
public static Size operator /(Size left, int right) => new Size(unchecked(left.
width
/ right), unchecked(left.height / right));
106
=> new SizeF(left.
width
/ right, left.height / right);
127
public readonly bool IsEmpty =>
width
== 0 && height == 0;
134
readonly get =>
width
;
192
public override readonly string ToString() => $"{{Width={
width
}, Height={height}}}";
201
new Size(unchecked(size.
width
* multiplier), unchecked(size.height * multiplier));
210
new SizeF(size.
width
* multiplier, size.height * multiplier);