Vcl.MPlayer.TMediaPlayer.Display

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Display: TWinControl read FDisplay write SetDisplay;

C++

__property Vcl::Controls::TWinControl* Display = {read=FDisplay, write=SetDisplay};

Properties

Type Visibility Source Unit Parent
property published
Vcl.MPlayer.pas
Vcl.MPlayer.hpp
Vcl.MPlayer TMediaPlayer

Description

Specifies the display window for a multimedia device that uses a window for output.

To use Display, assign the name of a windowed control such as a form or panel to Display to display output in that control.

The default value of Display is nil (Delphi) or NULL (C++), meaning that the device creates its own window to display output. Also, by freeing the control assigned to Display after the device has been opened, video output will be in its own default window.

Examples of multimedia devices that use a window to display output are Animation, AVI Video, Digital Video, Overlay, and VCR.

See Also