
Indicates if the orbit circles should be shown when the user is not orbiting.
This property is a boolean. Set to T to show orbits or Nil to hide them.
Can be passed as "ShowOrbitCircles" to Control_SetProperty and Control_GetProperty's string property name where applicable.
Copy Code |
|---|
; Get the property from the control (setq Value (Odcl_Control_GetShowOrbitCircles MyProject_MyForm_MyControl)) (setq Value (Odcl_Control_GetShowOrbitCircles "MyProject" "MyForm" "MyControl")) |
Copy Code |
|---|
; Set the property to the control (Odcl_Control_SetShowOrbitCircles MyProject_MyForm_MyControl T) (Odcl_Control_SetShowOrbitCircles "MyProject" "MyForm" "MyControl" Nil) |