Subtract() public static méthode

Contracts a by another .

public static Subtract ( SizeF sz1, SizeF sz2 ) : SizeF
sz1 SizeF
sz2 SizeF
Résultat SizeF
 /// <summary>Subtracts the width and height of one <see cref="T:System.Drawing.SizeF" /> structure from the width and height of another <see cref="T:System.Drawing.SizeF" /> structure.</summary>
 /// <returns>A <see cref="T:System.Drawing.SizeF" /> that is the result of the subtraction operation.</returns>
 /// <param name="sz1">The <see cref="T:System.Drawing.SizeF" /> structure on the left side of the subtraction operator. </param>
 /// <param name="sz2">The <see cref="T:System.Drawing.SizeF" /> structure on the right side of the subtraction operator. </param>
 /// <filterpriority>3</filterpriority>
 public static SizeF operator -(SizeF sz1, SizeF sz2)
 {
     return(SizeF.Subtract(sz1, sz2));
 }