CimPort.Allow_EGD (read-only property)

Indicates that the protocol used by the port supports EGD.
Syntax: Boolean = object.Allow_EGD
Description: The Allow_EGD property indicates that the protocol used by the port supports EGD.



Example:

Dim project As CimProject
Dim portList As CimPortList
Set project = CreateObject("CimProject")
project.OpenLocalProject "d:\classes\classes.gef"
Set portList = project.Ports

Dim port as CimPort
Set port = portList.Item("MASTER_TCPIP1)
MsgBox "Allow_EGD = " & port.Allow_EGD