![]() | Type | Description | ||
| String | A string expression that indicates the HTML format being displayed in the Name column, instead Name property. |
For instance, the "<b><u>B</u>old</b>" sequence displays a string like follows: Bold. The control displays the HTMLName property instead Name property, only if the HTMLName is not empty. Use the IncludeProperty to assign a new html format for a specified property, like in the following sample.

For instance, the following VB sample adds an icon to the Appearance property.
Private Sub PropertiesList1_IncludeProperty(ByVal Property As EXPROPERTIESLISTLibCtl.IProperty, Cancel As Boolean)
If Property.Name Like "Appearance" Then
Property.HTMLName = "<img>1</img>" & Property.Name
End If
End Sub
For instance, the following template sample adds three properties and assign an icon to each of them, using the <img> tag.
The following VB sample adds a picture to a property:
With PropertiesList1
.HasGridLines = False
.DefaultItemHeight = 52
.HTMLPicture("floppy") = "D:\Temp\Icons\3floppy_1mount.gif"
.HTMLPicture("hard") = "D:\Temp\Icons\3floppy_mount.gif"
With .Add("Floppy", "", EditColor)
.HTMLName = "<img>floppy</img>Floppy"
End With
With .Add("Hard", "", EditColor)
.HTMLName = "<img>hard</img>Hard"
End With
End With