ObjectDCL Banner

Visible Property

Description

Determines if the control is visible by the user at run time.

Type

This property is a boolean. T to make visible. Nil to hide.

Applies For

ActiveX, AngleSlider, Animation, BlockList, BlockView, CheckBox, ComboBox, DwgList, DwgPreview, Frame, GraphicButton, EditableGrid, Grid (Hatch), HtmlControl, ImageCombo, Label, ListBox, ListView, MonthPicker, Option, OptionList, PictureBox, ProgressBar, Rectangle, ScrollBar, SliderBar, SlideView, SpinButton, Splitter, TabControl, TextBox, TextButton, TreeControl, UrlLink.

Invoking From Old API

Can be passed as "Visible" 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_GetVisible MyProject_MyForm_MyControl))

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

Setter Example

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

(Odcl_Control_SetVisible "MyProject" "MyForm" "MyControl" Nil)

See Also

Enabled