ClashResult (Object)

Represents the ClashResult object.
The ClashResult object is a set of conflicts resulting from a clash detection.

Properties


Property Conflicts() As (Read Only)
Returns the collection of computed Conflicts.
Example:
    This example retrieves the conflicts of NewClashResult ClashResult.
    
    Dim NewConflicts As Conflicts
    Set NewConflicts = NewClashResult.Conflicts
    

Methods


Sub Export( iType, iPath)
Exports the results in a XML file.
Parameters:
iType
The type of export.
iPath
The path of the file.
Example:
    This example exports the results of NewClashResult ClashResult.
    
    Dim ThePath As String
    NewClashResult.Export CatClashExportTypeXMLResultOnly, "c:\tmp\sample.xml"