FocalLengthInfo

Focal length information supported by the camera, including the camera direction and focal length type.

public class FocalLengthInfo
    {
        public int cameraDirection;
        public CAMERA_FOCAL_LENGTH_TYPE focalLengthType;

        public FocalLengthInfo(int cameraDirection, CAMERA_FOCAL_LENGTH_TYPE focalLengthType)
        {
            this.cameraDirection = cameraDirection;
            this.focalLengthType = focalLengthType;
        }
        public FocalLengthInfo()
        {
        }

    }
Attention: This enumeration class applies to Android and iOS only.

Parameters

cameraDirection
The camera direction. See CAMERA_DIRECTION.
focalLengthType
The focal length type. See CAMERA_FOCAL_LENGTH_TYPE.