Property VLDSImageDisplay.TVLDSImageDisplay.UseVMR
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: TVLDSImageDisplay
Contents |
Syntax
Delphi:
property UseVMR : Boolean read FUseVMR write SetUseVMR default False;
C++ Builder:
__property bool UseVMR = { read=FUseVMR, write=SetUseVMR, default=False };
Summary
Use Windows Mixer Renderer 9 if possible.
Description
If this property is set to True the component will attempt to
use VMR9 (Windows Mixer Renderer 9) if possible. This
renderer provides better quality, but has some side effects
on Windows 2000.
Delphi example:
VLDSImageDisplay1.UseVMR := True;
C++ Builder example:
VLDSImageDisplay1->UseVMR = true;
Visual C++(MFC) example:
VLDSImageDisplay1.UseVMR = true;
Visual C++/CLI example:
dsVideoPlayer1->UseVMR = true;
C# example:
dsImageDisplay1.UseVMR = true;
VB example:
DSVideoPlayer1.UseVMR = True