FocalLengthInfo

Focal length information supported by the camera, including 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()
        {
        }

    }
Note: (Android and iOS only)

Properties

cameraDirection
Camera direction. See CAMERA_DIRECTION.
focalLengthType
Focal length type. See CAMERA_FOCAL_LENGTH_TYPE.