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