Description
An object that holds ComboBox data, so you can get or set ComboBox data using its Properties.
Properties
Constant |
Description |
Text |
Get or set ComboBox Text |
Caption |
Get or set ComboBox Caption |
Height |
Get or set ComboBox Height |
Left |
Get or set ComboBox Left |
Name |
Read ComboBox Name |
Top |
Get or set ComboBox Top |
Width |
Get or set ComboBox Width |
BackColor |
Get or set ComboBox BackColor |
FontBold |
Get or set ComboBox FontBold |
FontItalic |
Get or set ComboBox FontItalic |
FontSize |
Get or set ComboBox FontSize |
FontStrikethru |
Get or set ComboBox FontStrikethru |
FontUnderline |
Get or set ComboBox FontUnderline |
Sample
Public Sub main()
Dim frm As new VTLGeneral.VTLForm("frm1")
Dim Comb As new VTLGeneral.VTLControls.CChartObjectCombo("CombID")
frm.AddVTLControl(Comb)
Comb.Width = "1500"
frm.show()
End Sub
See Also
Back to VTL Server Script Index
|