Description
An object that holds TextBoxdata,so you can get or set TextBox data usingits Properties.
Properties
| Constant | Description |
| Text | Get or set TextBox Text |
| Caption | Get or set TextBox Caption |
| Height | Get or set TextBox Height |
| Left | Get or set TextBox Left |
| Name | Read TextBoxName |
| Top | Get or set TextBox Top |
| Width | Get or set TextBox Width |
| BackColor | Get or set TextBox BackColor |
| FontBold | Get or set TextBox FontBold |
| FontItalic | Get or set TextBox FontItalic |
| FontSize | Get or set TextBox FontSize |
| FontStrikethru | Get or set TextBox FontStrikethru |
| FontUnderline | Get or set TextBox FontUnderline |
Sample
Public Sub main() Dim frm As new VTLGeneral.VTLForm("frm1") Dim txt As new VTLGeneral.VTLControls.CChartObjectText("TxtID") frm.AddVTLControl(txt) txt.Width = "1500" frm.show() End Sub
See Also