GefObject.PipeFormat (read-only property)

Gets the GefPipeFormat for the object.
Syntax: Set GefPipeFormat = object.PipeFormat
Description: The GefPipeFormat object represents the attributes of Pipe Object.



Example:

Sub GefObject_PipeFormat()
    
    Dim oCimObj As GefObject
    Dim oCimPipeFormat As GefPipeFormat
    
    Set oCimObj = CimGetObject
    Set oCimPipeFormat = oCimObj.PipeFormat
    If oCimPipeFormat Is Nothing Then
        MsgBox "This object is not pipe object"
    Else
        MsgBox "This object is PipeObject"
    End If
    
End Sub