Copyright © 2005-2019 MultiMedia Soft

VideoPlayer.VideoWindowMove method

Previous pageReturn to chapter overviewNext page

Remarks

 

Moves/resizes the given video player rendering window.

 

For further details about the use of the embedded video player see the VideoPlayer class section.

For details about video clips rendering refer to the How to play video files through DirectShow tutorial.

 

 

Syntax

 

[Visual Basic]

Public Function VideoWindowMove (

nPlayerIndex as Int16,

nUniqueID as Int32,

nLeft as Int32,

nTop as Int32,

nWidth as Int32,

nHeight as Int32

) as enumErrorCodes


 

[C#]

public enumErrorCodes VideoWindowMove (

Int16 nPlayerIndex,

Int32 nUniqueID,

Int32 nLeft,

Int32 nTop,

Int32 nWidth,

Int32 nHeight

);


 

[C++]

public: enumErrorCodes VideoWindowMove (

Int16 nPlayerIndex,

Int32 nUniqueID,

Int32 nLeft,

Int32 nTop,

Int32 nWidth,

Int32 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 (see the LastError property for further error details)

enumErrorCodes.NOERROR (0)

The method call was successful.