FMX.Media.TDevicePosition

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDevicePosition = (Unspecified, Front, Back);

C++

enum class DECLSPEC_DENUM TDevicePosition : unsigned char { Unspecified, Front, Back, dpUnspecified _DEPRECATED_ATTRIBUTE3("Use TDevicePosition.Unspecified")  = 0x0, dpFront _DEPRECATED_ATTRIBUTE3("Use TDevicePosition.Front")  = 0x1, dpBack _DEPRECATED_ATTRIBUTE3("Use TDevicePosition.Back")  = 0x2 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Media.pas
FMX.Media.hpp
FMX.Media FMX.Media

Description

Enumerates the possible positions of a video capture device relative to the hardware system.

TDevicePosition defines the following values:

Value Meaning

Unspecified

The camera's position is not specified.

Front

The camera is on the front of the hardware system.

Back

The camera is on the back of the hardware system.

See Also