ObjectDCL Banner

UseBottomFromBottom Property

Description

Forces the bottom of the control to be offset from the bottom of the form.

Type

This property is an integer and has only the following valid values:

  • 0 = Align from the top of the dialog
  • 1 = Align from the bottom of the dialog

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 "UseBottomFromBottom" to Control_SetProperty and Control_GetProperty's string property name where applicable.

Remarks

This property must be used in conjunction with the BottomFromBottom property.

Getter Example

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

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

Setter Example

CopyCode imageCopy Code
; Set the property to the control
(Odcl_Control_SetUseBottomFromBottom MyProject_MyForm_MyControl 1)

(Odcl_Control_SetUseBottomFromBottom "MyProject" "MyForm" "MyControl" 1)

See Also

BottomFromBottom