<div class='type'>Function</div>


<a id='references'></a>


<h2 id="times-scalefactor">times</h2>

<div class='sourceset sourceset-common'>Common</div>


```kotlin
operator fun Size.times(scaleFactor: ScaleFactor): Size
```


Multiplication operator with `Size`.

Return a new `Size` with the width and height multiplied by the `ScaleFactor.scaleX` and
`ScaleFactor.scaleY` respectively





<hr class="docs-overload-divider">


<h2 id="times-size">times</h2>

<div class='sourceset sourceset-common'>Common</div>


```kotlin
operator fun ScaleFactor.times(size: Size): Size
```


Multiplication operator with `Size` with reverse parameter types to maintain commutative
properties of multiplication

Return a new `Size` with the width and height multiplied by the `ScaleFactor.scaleX` and
`ScaleFactor.scaleY` respectively