Interface MouseScrollArguments.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<MouseScrollArguments.Builder,,MouseScrollArguments> SdkBuilder<MouseScrollArguments.Builder,,MouseScrollArguments> SdkPojo
- Enclosing class:
MouseScrollArguments
@Mutable
@NotThreadSafe
public static interface MouseScrollArguments.Builder
extends SdkPojo, CopyableBuilder<MouseScrollArguments.Builder,MouseScrollArguments>
-
Method Summary
Modifier and TypeMethodDescriptionThe horizontal scroll delta.The vertical scroll delta.The X coordinate on screen where the scroll occurs.The Y coordinate on screen where the scroll occurs.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
x
The X coordinate on screen where the scroll occurs.
- Parameters:
x- The X coordinate on screen where the scroll occurs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
y
The Y coordinate on screen where the scroll occurs.
- Parameters:
y- The Y coordinate on screen where the scroll occurs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deltaX
The horizontal scroll delta. Valid range: -1000 to 1000.
- Parameters:
deltaX- The horizontal scroll delta. Valid range: -1000 to 1000.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deltaY
The vertical scroll delta. Valid range: -1000 to 1000. Negative values scroll down.
- Parameters:
deltaY- The vertical scroll delta. Valid range: -1000 to 1000. Negative values scroll down.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-