Property VLDSVideoPlayer.TVLDSVideoPlayer.VideoCodec
From Mitov Wiki Doc
				
				
				
				
																
				
				
								
				This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLDSVideoPlayer
| Contents | 
Syntax
Delphi:
property VideoCodec : Cardinal read GetVideoCodec;
C++ Builder:
__property unsigned int VideoCodec = { read=GetVideoCodec };
Summary
The FourCC code of the video codec used to encode the file.
Description
Use this property to get the FourCC code of the video codec
used to encode the file.
Delphi example:
AValue : Cardinal; AValue := VLDSVideoPlayer1.VideoCodec;
C++ Builder example:
unsigned int AValue = VLDSVideoPlayer1->VideoCodec;
Visual C++(MFC) example:
unsigned int AValue = VLDSVideoPlayer1.VideoCodec;
Visual C++/CLI example:
unsigned int value = dsVideoPlayer1->VideoCodec;
C# example:
UInt32 value = dsVideoPlayer1.VideoCodec;
VB example:
Dim value As UInt32 = DSVideoPlayer1.VideoCodec
