Class SetSceneItemProperties.Crop
- java.lang.Object
-
- nl.harm27.obs.websocket.api.requests.sceneitems.SetSceneItemProperties.Crop
-
- Enclosing class:
- SetSceneItemProperties
public class SetSceneItemProperties.Crop extends Object
-
-
Constructor Summary
Constructors Constructor Description Crop()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<Integer>
getBottom()
The new amount of pixels cropped off the bottom of the source before scaling.Optional<Integer>
getLeft()
The new amount of pixels cropped off the left of the source before scaling.Optional<Integer>
getRight()
The new amount of pixels cropped off the right of the source before scaling.Optional<Integer>
getTop()
The new amount of pixels cropped off the top of the source before scaling.void
setBottom(int bottom)
The new amount of pixels cropped off the bottom of the source before scaling.void
setLeft(int left)
The new amount of pixels cropped off the left of the source before scaling.void
setRight(int right)
The new amount of pixels cropped off the right of the source before scaling.void
setTop(int top)
The new amount of pixels cropped off the top of the source before scaling.
-
-
-
Method Detail
-
getTop
public Optional<Integer> getTop()
The new amount of pixels cropped off the top of the source before scaling.
-
setTop
public void setTop(int top)
The new amount of pixels cropped off the top of the source before scaling.
-
getBottom
public Optional<Integer> getBottom()
The new amount of pixels cropped off the bottom of the source before scaling.
-
setBottom
public void setBottom(int bottom)
The new amount of pixels cropped off the bottom of the source before scaling.
-
getLeft
public Optional<Integer> getLeft()
The new amount of pixels cropped off the left of the source before scaling.
-
setLeft
public void setLeft(int left)
The new amount of pixels cropped off the left of the source before scaling.
-
getRight
public Optional<Integer> getRight()
The new amount of pixels cropped off the right of the source before scaling.
-
setRight
public void setRight(int right)
The new amount of pixels cropped off the right of the source before scaling.
-
-