====== SHUTDOWN property (System) ====== ==== Description ==== This property returns TRUE$ if all the SYSTEM DESTROY method has been invoked and all Presentation Server windows have been destroyed. When set to TRUE$ this property causes the system to shut down (in the same way as the SYSTEM DESTROY method). Once this has been set to TRUE$ this property cannot be used to cancel a shutdown request. ==== Property Value ==== This property is a boolean value. ==== Property Traits ==== ^Development^Runtime^Indexed^Scaled^Synthetic^ |No|Get/Set|No|No|No| ==== Remarks ==== N/A ==== Example ==== // Check if the Presentation Server is shutting down IsShutdown = Get_Property( "SYSTEM", "SHUTDOWN" ) // Shut the Presentation Server down Call Set_Property( "SYSTEM", "SHUTDOWN", TRUE$ ) ==== See Also ==== SYSTEM DESTROY method.