Divide a vector Size by a scalar.
Syntax

[C#]

static SizeF operator / (SizeF a, double b);

[Visual Basic]

Shared Function Operator / (a As SizeF, b As Double) As SizeF
Params
Name Description
a The SizeF for division.
b Scalar that the components of the SizeF should be divided by.
return A SizeF containing the result.
Notes

None.

Example

None.