Click or drag to resize

ActiveParticipantPinVideo Method

Requests for a current participant's video to be pinned in a certain area of the video image. The destination coordinates can be any point within a video region inside the video image. They do not have to be a point at the boundary of the video region.

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public void PinVideo(
	float destinationXCoordinate,
	float destinationYCoordinate,
	ActiveParticipantParticipantActionCompletionHandler completionHandler
)

Parameters

destinationXCoordinate
Type: SystemSingle
Horizontal coordinate of the participant's final video position in the video image. The float type value in range (0.0, 1.0), with 0.0 referring to the left most side, and 1.0 to the right most side of the video image.
destinationYCoordinate
Type: SystemSingle
Vertical coordinate of the participant's final video position in the video image. The float type value in range (0.0, 1.0), with 0.0 referring to the top, and 1.0 to the bottom of the video image.
completionHandler
Type: Avaya.ClientServicesActiveParticipantParticipantActionCompletionHandler
The completion handler for this operation. Operation success or failure is reported through this handler.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThrown if either of the coordinates is outside of the allowed range (0.0, 1.0).
See Also