Share via


ComputerActionScroll Constructors

Definition

Overloads

ComputerActionScroll()

Source:
ComputerActionScroll.cs

Initializes a new instance of ComputerActionScroll for deserialization.

public ComputerActionScroll();
Public Sub New ()

Applies to

ComputerActionScroll(Int32, Int32, Int32, Int32)

Source:
ComputerActionScroll.cs

Initializes a new instance of ComputerActionScroll.

public ComputerActionScroll(int x, int y, int scrollX, int scrollY);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerActionScroll : int * int * int * int -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerActionScroll
Public Sub New (x As Integer, y As Integer, scrollX As Integer, scrollY As Integer)

Parameters

x
Int32

The x-coordinate where the scroll occurred.

y
Int32

The y-coordinate where the scroll occurred.

scrollX
Int32

The horizontal scroll distance.

scrollY
Int32

The vertical scroll distance.

Applies to

ComputerActionScroll(ComputerActionType, IDictionary<String,BinaryData>, Int32, Int32, Int32, Int32)

Source:
ComputerActionScroll.cs

Initializes a new instance of ComputerActionScroll.

public ComputerActionScroll(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerActionType type, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, int x, int y, int scrollX, int scrollY);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerActionScroll : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerActionType * System.Collections.Generic.IDictionary<string, BinaryData> * int * int * int * int -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerActionScroll
Public Sub New (type As ComputerActionType, serializedAdditionalRawData As IDictionary(Of String, BinaryData), x As Integer, y As Integer, scrollX As Integer, scrollY As Integer)

Parameters

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

x
Int32

The x-coordinate where the scroll occurred.

y
Int32

The y-coordinate where the scroll occurred.

scrollX
Int32

The horizontal scroll distance.

scrollY
Int32

The vertical scroll distance.

Applies to