Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents  
 
VideoPlayer.Move method 
 
Remarks 
 
Moves/resizes the 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.Move
nPlayer as Integer
nLeft as Long
nTop as Long
nWidth as Long
nHeight as Long 
 
[C++] 
short control.VideoPlayer.Move
short nPlayer
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.
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
 
 
 
 
 
 
 
 
Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents