DragParam(IEnumerable<CoordParam>) Constructor

Definition

Initializes a new instance of DragParam.

public DragParam(System.Collections.Generic.IEnumerable<Azure.AI.AgentServer.Responses.Models.CoordParam> path);
new Azure.AI.AgentServer.Responses.Models.DragParam : seq<Azure.AI.AgentServer.Responses.Models.CoordParam> -> Azure.AI.AgentServer.Responses.Models.DragParam
Public Sub New (path As IEnumerable(Of CoordParam))

Parameters

path
IEnumerable<CoordParam>

An array of coordinates representing the path of the drag action. Coordinates will appear as an array of objects, eg

[
  { x: 100, y: 200 },
  { x: 200, y: 300 }
]

Exceptions

path is null.

Applies to