Defines the docking behavior for this palette. This controls how the user is allowed to dock the palette.
# Get the value of the property.propertyValue = palette_var.dockingOption# Set the value of the property.palette_var.dockingOption = propertyValue
#include <Core/UserInterface/Palette.h>// Get the value of the property.PaletteDockingOptions propertyValue = palette_var->dockingOption();// Set the value of the property, where value_var is a PaletteDockingOptions.bool returnValue = palette_var->dockingOption(value_var);