ButtonClick

Fires when a button on ddPLButton property is clicked.

Syntax

object_ButtonClick(property As IPropNode)

The ButtonClick event syntax has the following parts:

Part Description
object An expression evaluating to an object of type PropList.
property IPropNode

Example

'Handle the border property with a custom dialog
Private Sub PropertyList1_ButtonClick(property as IPropNode)
If property.Name = "Border" Then
frmBorders.Show vbModal
End If
End Sub