Remarks
Moves/resizes the given video player rendering window.
For further details about the use of the embedded video player see the VideoPlayer object section.
For details about video clips rendering refer to the How to play video files through DirectShow tutorial.
Syntax
[Visual Basic]
control.VideoPlayer.VideoWindowMove (
nPlayer as Integer,
nUniqueID as Long,
nLeft as Long,
nTop as Long,
nWidth as Long,
nHeight as Long
) as enumErrorCodes
|
|
[C++]
short control.VideoPlayer.VideoWindowMove (
short nPlayer,
long nUniqueID,
long nLeft,
long nTop,
long nWidth,
long nHeight
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the player that will use the video player.
|
nUniqueID
|
Unique identifier of the rendering window previously used with the VideoPlayer.VideoWindowAdd method
|
nLeft
|
New left position of the video window, expressed in client coordinates (pixels) of the container form
|
nTop
|
New top position of the video window, expressed in client coordinates (pixels) of the container form
|
nWidth
|
New width of the video window, expressed in pixels
|
nHeight
|
New height of the video window, expressed in pixels
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred, check the LastError property value in order to get the error code
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful
|
|