pycatia.space_analyses_interfaces.clash_result

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-06-11 12:40:47.360445

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.space_analyses_interfaces.clash_result.ClashResult(com_object)

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
ClashResult

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

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property Conflicts() As Conflicts (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
Return type:

Conflicts

export(i_type: int, i_path: str) None

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384))
o Sub Export(CatClashExportType iType,
CATBSTR 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:tmpsample.xml”
Parameters:
  • i_type (int) – enum cat_clash_export_type

  • i_path (str) –

Return type:

None