ObjectDCL Banner

ShowTime Property

Description

This setting will make the time left visible.

Type

This property is a boolean. Set to T to display the remaining time or Nil not to.

Applies For

ProgressBar.

Invoking From Old API

Can be passed as "ShowTime" to Control_SetProperty and Control_GetProperty's string property name where applicable.

Getter Example

CopyCode imageCopy Code
; Get the property from the control
(setq Value (Odcl_Control_GetShowTime MyProject_MyForm_MyControl))

(setq Value (Odcl_Control_GetShowTime "MyProject" "MyForm" "MyControl"))

Setter Example

CopyCode imageCopy Code
; Set the property to the control
(Odcl_Control_SetShowTime MyProject_MyForm_MyControl T)

(Odcl_Control_SetShowTime "MyProject" "MyForm" "MyControl" Nil)