FetchData

Fires when enum combobox dropdown is pressed. You can change the items in the combobox by using node.ClearEnums and node.AddEnum methods.

Syntax

object_FetchData((property As IPropNode))

The FetchData event syntax has the following parts:

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

Example

Private Sub pl_FetchData (ByVal property As DDPropertyListCtl.IPropNode)
Select Case property.Name
Case "State"
property.ClearEnums
property.AddEnum "AL", "Alabama"
property.AddEnum "CA", "California"
property.AddEnum "OH", "Ohio"
property.AddEnum "NC", "North Carolina"
End Select
End Sub