FMX.Media.TCameraKind

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCameraKind = (Default, FrontCamera, BackCamera);

C++

enum class DECLSPEC_DENUM TCameraKind : unsigned char { Default, FrontCamera, BackCamera, ckDefault _DEPRECATED_ATTRIBUTE3("Use TCameraKind.Default")  = 0x0, ckFrontCamera _DEPRECATED_ATTRIBUTE3("Use TCameraKind.FrontCamera")  = 0x1, ckBackCamera _DEPRECATED_ATTRIBUTE3("Use TCameraKind.BackCamera")  = 0x2 };

Properties

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

Description

Enumerates the possible kinds of TCameraComponents.

TCameraKind defines the following values:

Value Meaning

Default

The used camera is the default camera of the device.

FrontCamera

The used camera is the front camera of the device.

BackCamera

The used camera is the back camera of the device.

See Also