Gets and sets if Fusion is offline or not.
# Get the value of the property.propertyValue = application_var.isOffLine# Set the value of the property.application_var.isOffLine = propertyValue
#include <Core/Application/Application.h>// Get the value of the property.boolean propertyValue = application_var->isOffLine();// Set the value of the property, where value_var is a boolean.bool returnValue = application_var->isOffLine(value_var);