
This setting will make the time left visible.
This property is a boolean. Set to T to display the remaining time or Nil not to.
Can be passed as "ShowTime" to Control_SetProperty and Control_GetProperty's string property name where applicable.
Copy Code |
|---|
; Get the property from the control (setq Value (Odcl_Control_GetShowTime MyProject_MyForm_MyControl)) (setq Value (Odcl_Control_GetShowTime "MyProject" "MyForm" "MyControl")) |
Copy Code |
|---|
; Set the property to the control (Odcl_Control_SetShowTime MyProject_MyForm_MyControl T) (Odcl_Control_SetShowTime "MyProject" "MyForm" "MyControl" Nil) |