property Editor.Value as Variant
Retrieves or sets the control's value

TypeDescription
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:

Newer HTML format supports subscript and superscript like follows:

Also, newer HTML format supports decorative text like follows:

 

The following sample displays a simple caption:

With Editor1
    .EditType = EXEDITORSLibCtl.None
    .Value = "Just an <fgcolor=0000FF><b>HTML</b></fgcolor> caption."
End With