NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SizeF Subtraction Operator

Contracts a SizeF by another SizeF.

[C#]
public static SizeF operator -(
   SizeF sz1,
   SizeF sz2
);
[C++]
public: static SizeF operator op_Subtraction(
   SizeF sz1,
   SizeF sz2
);
[JScript]
returnValue = sz1 - sz2;

[Visual Basic] In Visual Basic, you cannot use the operators defined by a type, nor override them or define your own.

[JScript] In JScript, you can use the operators defined by a type, but you cannot override them or define your own.

Arguments [JScript]

sz1
SizeF to contract.
sz2
SizeF to contract sz1 by.

Parameters [C#, C++]

sz1
SizeF to contract.
sz2
SizeF to contract sz1 by.

See Also

SizeF Structure | SizeF Members | System.Drawing Namespace