
Sets the height of the control.
This property is an integer and represents an amount in pixels.
ActiveX, AngleSlider, Animation, BlockList, BlockView, CheckBox, ComboBox, CustomFileDlg, 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.
Can be passed as "Height" to Control_SetProperty and Control_GetProperty's string property name where applicable.
Use Control_SetPos if you need to resize the control from LISP.
Copy Code |
|---|
; Get the property from the control (setq Value (Odcl_Control_GetHeight MyProject_MyForm_MyControl)) (setq Value (Odcl_Control_GetHeight "MyProject" "MyForm" "MyControl")) |
Copy Code |
|---|
; Set the position and dimensions of the control (Odcl_Control_SetPos MyProject_MyForm_MyControl 50 50 100 75) (Odcl_Control_SetPos "MyProject" "MyForm" "MyControl" 50 50 100 75) |