Type | Description | |||
Variant | A Variant value that indicates the editor's value. |
The Value property specifies the value of the editor. The control displays the value based on the type of the control. The type of the control is determined by the EditType property. The ValueChanged event occurs when user changes the control's data.
If the EditType property is None, the control is able to use built-in HTML format like follows:
Also, newer HTML format supports decorative text like follows:
or "<font ;31><sha 404040;5;0><fgcolor=FFFFFF>outline anti-aliasing</fgcolor></sha></font>" gets:
The following sample displays a simple caption:
With Editor1 .EditType = EXEDITORSLibCtl.None .Value = "Just an <fgcolor=0000FF><b>HTML</b></fgcolor> caption." End With