ComputerActionScroll Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| ComputerActionScroll() |
Initializes a new instance of ComputerActionScroll for deserialization. |
| ComputerActionScroll(Int32, Int32, Int32, Int32) |
Initializes a new instance of ComputerActionScroll. |
| ComputerActionScroll(ComputerActionType, IDictionary<String,BinaryData>, Int32, Int32, Int32, Int32) |
Initializes a new instance of ComputerActionScroll. |
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
- type
- ComputerActionType
- 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.