Gets and sets the active DataProject. This is the project currently displayed in the Fusion Data Panel.
# Get the value of the property.propertyValue = data_var.activeProject# Set the value of the property.data_var.activeProject = propertyValue
#include <Core/Dashboard/Data.h>// Get the value of the property.Ptr<DataProject> propertyValue = data_var->activeProject();// Set the value of the property, where value_var is a DataProject.bool returnValue = data_var->activeProject(value_var);