Gets and sets the current camera type.
# Get the value of the property.propertyValue = camera_var.cameraType# Set the value of the property.camera_var.cameraType = propertyValue
#include <Core/Application/Camera.h>// Get the value of the property.CameraTypes propertyValue = camera_var->cameraType();// Set the value of the property, where value_var is a CameraTypes.bool returnValue = camera_var->cameraType(value_var);